diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..4644bcd2861 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/CachePolicy.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/CachePolicy.json new file mode 100644 index 00000000000..6a857588a0c --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/CachePolicy.json @@ -0,0 +1,194 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CachePolicy", + "schema": "{\n \"description\": \"CachePolicy is the Schema for the CachePolicies API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CachePolicySpec defines the desired state of CachePolicy.\\n\\n\\nA cache policy.\\n\\n\\nWhen it's attached to a cache behavior, the cache policy determines the following:\\n\\n\\n - The values that CloudFront includes in the cache key. These values can\\n include HTTP headers, cookies, and URL query strings. CloudFront uses\\n the cache key to find an object in its cache that it can return to the\\n viewer.\\n\\n\\n - The default, minimum, and maximum time to live (TTL) values that you\\n want objects to stay in the CloudFront cache.\\n\\n\\nThe headers, cookies, and query strings that are included in the cache key\\nare also included in requests that CloudFront sends to the origin. CloudFront\\nsends a request when it can't find a valid object in its cache that matches\\nthe request's cache key. If you want to send values to the origin but not\\ninclude them in the cache key, use OriginRequestPolicy.\",\n \"properties\": {\n \"cachePolicyConfig\": {\n \"description\": \"A cache policy configuration.\",\n \"properties\": {\n \"comment\": {\n \"type\": \"string\"\n },\n \"defaultTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"maxTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"parametersInCacheKeyAndForwardedToOrigin\": {\n \"description\": \"This object determines the values that CloudFront includes in the cache key.\\nThese values can include HTTP headers, cookies, and URL query strings. CloudFront\\nuses the cache key to find an object in its cache that it can return to the\\nviewer.\\n\\n\\nThe headers, cookies, and query strings that are included in the cache key\\nare also included in requests that CloudFront sends to the origin. CloudFront\\nsends a request when it can't find an object in its cache that matches the\\nrequest's cache key. If you want to send values to the origin but not include\\nthem in the cache key, use OriginRequestPolicy.\",\n \"properties\": {\n \"cookiesConfig\": {\n \"description\": \"An object that determines whether any cookies in viewer requests (and if\\nso, which cookies) are included in the cache key and in requests that CloudFront\\nsends to the origin.\",\n \"properties\": {\n \"cookieBehavior\": {\n \"type\": \"string\"\n },\n \"cookies\": {\n \"description\": \"Contains a list of cookie names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"enableAcceptEncodingBrotli\": {\n \"type\": \"boolean\"\n },\n \"enableAcceptEncodingGzip\": {\n \"type\": \"boolean\"\n },\n \"headersConfig\": {\n \"description\": \"An object that determines whether any HTTP headers (and if so, which headers)\\nare included in the cache key and in requests that CloudFront sends to the\\norigin.\",\n \"properties\": {\n \"headerBehavior\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"description\": \"Contains a list of HTTP header names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"queryStringsConfig\": {\n \"description\": \"An object that determines whether any URL query strings in viewer requests\\n(and if so, which query strings) are included in the cache key and in requests\\nthat CloudFront sends to the origin.\",\n \"properties\": {\n \"queryStringBehavior\": {\n \"type\": \"string\"\n },\n \"queryStrings\": {\n \"description\": \"Contains a list of query string names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"cachePolicyConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Cache Policy\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cache Policy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Distribution.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Distribution.json new file mode 100644 index 00000000000..27e0b97f32b --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Distribution.json @@ -0,0 +1,194 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Distribution", + "schema": "{\n \"description\": \"Distribution is the Schema for the Distributions API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DistributionSpec defines the desired state of Distribution.\\n\\n\\nA distribution tells CloudFront where you want content to be delivered from,\\nand the details about how to track and manage content delivery.\",\n \"properties\": {\n \"distributionConfig\": {\n \"description\": \"The distribution's configuration information.\",\n \"properties\": {\n \"aliases\": {\n \"description\": \"A complex type that contains information about CNAMEs (alternate domain names),\\nif any, for this distribution.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheBehaviors\": {\n \"description\": \"A complex type that contains zero or more CacheBehavior elements.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A complex type that describes how CloudFront processes requests.\\n\\n\\nYou must create at least as many cache behaviors (including the default cache\\nbehavior) as you have origins if you want CloudFront to serve objects from\\nall of the origins. Each cache behavior specifies the one origin from which\\nyou want CloudFront to get objects. If you have two origins and only the\\ndefault cache behavior, the default cache behavior will cause CloudFront\\nto get objects from one of the origins, but the other origin is never used.\\n\\n\\nFor the current quota (formerly known as limit) on the number of cache behaviors\\nthat you can add to a distribution, see Quotas (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html)\\nin the Amazon CloudFront Developer Guide.\\n\\n\\nIf you don't want to specify any cache behaviors, include only an empty CacheBehaviors\\nelement. Don't include an empty CacheBehavior element because this is invalid.\\n\\n\\nTo delete all cache behaviors in an existing distribution, update the distribution\\nconfiguration and include only an empty CacheBehaviors element.\\n\\n\\nTo add, change, or remove one or more cache behaviors, update the distribution\\nconfiguration and specify all of the cache behaviors that you want to include\\nin the updated distribution.\\n\\n\\nFor more information about cache behaviors, see Cache Behavior Settings (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"allowedMethods\": {\n \"description\": \"A complex type that controls which HTTP methods CloudFront processes and\\nforwards to your Amazon S3 bucket or your custom origin. There are three\\nchoices:\\n\\n\\n * CloudFront forwards only GET and HEAD requests.\\n\\n\\n * CloudFront forwards only GET, HEAD, and OPTIONS requests.\\n\\n\\n * CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE\\n requests.\\n\\n\\nIf you pick the third choice, you may need to restrict access to your Amazon\\nS3 bucket or to your custom origin so users can't perform operations that\\nyou don't want them to. For example, you might not want users to have permissions\\nto delete objects from your origin.\",\n \"properties\": {\n \"cachedMethods\": {\n \"description\": \"A complex type that controls whether CloudFront caches the response to requests\\nusing the specified HTTP methods. There are two choices:\\n\\n\\n * CloudFront caches responses to GET and HEAD requests.\\n\\n\\n * CloudFront caches responses to GET, HEAD, and OPTIONS requests.\\n\\n\\nIf you pick the second choice for your Amazon S3 Origin, you may need to\\nforward Access-Control-Request-Method, Access-Control-Request-Headers, and\\nOrigin headers for the responses to be cached correctly.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"cachePolicyID\": {\n \"type\": \"string\"\n },\n \"compress\": {\n \"type\": \"boolean\"\n },\n \"defaultTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fieldLevelEncryptionID\": {\n \"type\": \"string\"\n },\n \"forwardedValues\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include values in the cache key, use a cache policy. For more\\ninformation, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)\\nin the Amazon CloudFront Developer Guide.\\n\\n\\nIf you want to send values to the origin but not include them in the cache\\nkey, use an origin request policy. For more information, see Creating origin\\nrequest policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)\\nin the Amazon CloudFront Developer Guide.\\n\\n\\nA complex type that specifies how CloudFront handles query strings, cookies,\\nand HTTP headers.\",\n \"properties\": {\n \"cookies\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include cookies in the cache key, use CookiesConfig in a cache\\npolicy. See CachePolicy.\\n\\n\\nIf you want to send cookies to the origin but not include them in the cache\\nkey, use CookiesConfig in an origin request policy. See OriginRequestPolicy.\\n\\n\\nA complex type that specifies whether you want CloudFront to forward cookies\\nto the origin and, if so, which ones. For more information about forwarding\\ncookies to the origin, see Caching Content Based on Cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"forward\": {\n \"type\": \"string\"\n },\n \"whitelistedNames\": {\n \"description\": \"Contains a list of cookie names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"description\": \"Contains a list of HTTP header names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"queryString\": {\n \"type\": \"boolean\"\n },\n \"queryStringCacheKeys\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include query strings in the cache key, use QueryStringsConfig\\nin a cache policy. See CachePolicy.\\n\\n\\nIf you want to send query strings to the origin but not include them in the\\ncache key, use QueryStringsConfig in an origin request policy. See OriginRequestPolicy.\\n\\n\\nA complex type that contains information about the query string parameters\\nthat you want CloudFront to use for caching for a cache behavior.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"functionAssociations\": {\n \"description\": \"A list of CloudFront functions that are associated with a cache behavior\\nin a CloudFront distribution. CloudFront functions must be published to the\\nLIVE stage to associate them with a cache behavior.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A CloudFront function that is associated with a cache behavior in a CloudFront\\ndistribution.\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\"\n },\n \"functionARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"lambdaFunctionAssociations\": {\n \"description\": \"A complex type that specifies a list of Lambda@Edge functions associations\\nfor a cache behavior.\\n\\n\\nIf you want to invoke one or more Lambda@Edge functions triggered by requests\\nthat match the PathPattern of the cache behavior, specify the applicable\\nvalues for Quantity and Items. Note that there can be up to 4 LambdaFunctionAssociation\\nitems in this list (one for each possible value of EventType) and each EventType\\ncan be associated with only one function.\\n\\n\\nIf you don't want to invoke any Lambda@Edge functions for the requests that\\nmatch PathPattern, specify 0 for Quantity and omit Items.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A complex type that contains a Lambda@Edge function association.\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\"\n },\n \"includeBody\": {\n \"type\": \"boolean\"\n },\n \"lambdaFunctionARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"maxTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originRequestPolicyID\": {\n \"type\": \"string\"\n },\n \"pathPattern\": {\n \"type\": \"string\"\n },\n \"realtimeLogConfigARN\": {\n \"type\": \"string\"\n },\n \"responseHeadersPolicyID\": {\n \"type\": \"string\"\n },\n \"smoothStreaming\": {\n \"type\": \"boolean\"\n },\n \"targetOriginID\": {\n \"type\": \"string\"\n },\n \"trustedKeyGroups\": {\n \"description\": \"A list of key groups whose public keys CloudFront can use to verify the signatures\\nof signed URLs and signed cookies.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"trustedSigners\": {\n \"description\": \"A list of Amazon Web Services accounts whose public keys CloudFront can use\\nto verify the signatures of signed URLs and signed cookies.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"viewerProtocolPolicy\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"comment\": {\n \"type\": \"string\"\n },\n \"continuousDeploymentPolicyID\": {\n \"type\": \"string\"\n },\n \"customErrorResponses\": {\n \"description\": \"A complex type that controls:\\n\\n\\n * Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range\\n with custom error messages before returning the response to the viewer.\\n\\n\\n * How long CloudFront caches HTTP status codes in the 4xx and 5xx range.\\n\\n\\nFor more information about custom error pages, see Customizing Error Responses\\n(https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A complex type that controls:\\n\\n\\n - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range\\n with custom error messages before returning the response to the viewer.\\n\\n\\n - How long CloudFront caches HTTP status codes in the 4xx and 5xx range.\\n\\n\\nFor more information about custom error pages, see Customizing Error Responses\\n(https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"errorCachingMinTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"errorCode\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"responseCode\": {\n \"type\": \"string\"\n },\n \"responsePagePath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"defaultCacheBehavior\": {\n \"description\": \"A complex type that describes the default cache behavior if you don't specify\\na CacheBehavior element or if request URLs don't match any of the values\\nof PathPattern in CacheBehavior elements. You must create exactly one default\\ncache behavior.\",\n \"properties\": {\n \"allowedMethods\": {\n \"description\": \"A complex type that controls which HTTP methods CloudFront processes and\\nforwards to your Amazon S3 bucket or your custom origin. There are three\\nchoices:\\n\\n\\n * CloudFront forwards only GET and HEAD requests.\\n\\n\\n * CloudFront forwards only GET, HEAD, and OPTIONS requests.\\n\\n\\n * CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE\\n requests.\\n\\n\\nIf you pick the third choice, you may need to restrict access to your Amazon\\nS3 bucket or to your custom origin so users can't perform operations that\\nyou don't want them to. For example, you might not want users to have permissions\\nto delete objects from your origin.\",\n \"properties\": {\n \"cachedMethods\": {\n \"description\": \"A complex type that controls whether CloudFront caches the response to requests\\nusing the specified HTTP methods. There are two choices:\\n\\n\\n * CloudFront caches responses to GET and HEAD requests.\\n\\n\\n * CloudFront caches responses to GET, HEAD, and OPTIONS requests.\\n\\n\\nIf you pick the second choice for your Amazon S3 Origin, you may need to\\nforward Access-Control-Request-Method, Access-Control-Request-Headers, and\\nOrigin headers for the responses to be cached correctly.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"cachePolicyID\": {\n \"type\": \"string\"\n },\n \"compress\": {\n \"type\": \"boolean\"\n },\n \"defaultTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fieldLevelEncryptionID\": {\n \"type\": \"string\"\n },\n \"forwardedValues\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include values in the cache key, use a cache policy. For more\\ninformation, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)\\nin the Amazon CloudFront Developer Guide.\\n\\n\\nIf you want to send values to the origin but not include them in the cache\\nkey, use an origin request policy. For more information, see Creating origin\\nrequest policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)\\nin the Amazon CloudFront Developer Guide.\\n\\n\\nA complex type that specifies how CloudFront handles query strings, cookies,\\nand HTTP headers.\",\n \"properties\": {\n \"cookies\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include cookies in the cache key, use CookiesConfig in a cache\\npolicy. See CachePolicy.\\n\\n\\nIf you want to send cookies to the origin but not include them in the cache\\nkey, use CookiesConfig in an origin request policy. See OriginRequestPolicy.\\n\\n\\nA complex type that specifies whether you want CloudFront to forward cookies\\nto the origin and, if so, which ones. For more information about forwarding\\ncookies to the origin, see Caching Content Based on Cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"forward\": {\n \"type\": \"string\"\n },\n \"whitelistedNames\": {\n \"description\": \"Contains a list of cookie names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"description\": \"Contains a list of HTTP header names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"queryString\": {\n \"type\": \"boolean\"\n },\n \"queryStringCacheKeys\": {\n \"description\": \"This field is deprecated. We recommend that you use a cache policy or an\\norigin request policy instead of this field.\\n\\n\\nIf you want to include query strings in the cache key, use QueryStringsConfig\\nin a cache policy. See CachePolicy.\\n\\n\\nIf you want to send query strings to the origin but not include them in the\\ncache key, use QueryStringsConfig in an origin request policy. See OriginRequestPolicy.\\n\\n\\nA complex type that contains information about the query string parameters\\nthat you want CloudFront to use for caching for a cache behavior.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"functionAssociations\": {\n \"description\": \"A list of CloudFront functions that are associated with a cache behavior\\nin a CloudFront distribution. CloudFront functions must be published to the\\nLIVE stage to associate them with a cache behavior.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A CloudFront function that is associated with a cache behavior in a CloudFront\\ndistribution.\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\"\n },\n \"functionARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"lambdaFunctionAssociations\": {\n \"description\": \"A complex type that specifies a list of Lambda@Edge functions associations\\nfor a cache behavior.\\n\\n\\nIf you want to invoke one or more Lambda@Edge functions triggered by requests\\nthat match the PathPattern of the cache behavior, specify the applicable\\nvalues for Quantity and Items. Note that there can be up to 4 LambdaFunctionAssociation\\nitems in this list (one for each possible value of EventType) and each EventType\\ncan be associated with only one function.\\n\\n\\nIf you don't want to invoke any Lambda@Edge functions for the requests that\\nmatch PathPattern, specify 0 for Quantity and omit Items.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A complex type that contains a Lambda@Edge function association.\",\n \"properties\": {\n \"eventType\": {\n \"type\": \"string\"\n },\n \"includeBody\": {\n \"type\": \"boolean\"\n },\n \"lambdaFunctionARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"maxTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minTTL\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originRequestPolicyID\": {\n \"type\": \"string\"\n },\n \"realtimeLogConfigARN\": {\n \"type\": \"string\"\n },\n \"responseHeadersPolicyID\": {\n \"type\": \"string\"\n },\n \"smoothStreaming\": {\n \"type\": \"boolean\"\n },\n \"targetOriginID\": {\n \"type\": \"string\"\n },\n \"trustedKeyGroups\": {\n \"description\": \"A list of key groups whose public keys CloudFront can use to verify the signatures\\nof signed URLs and signed cookies.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"trustedSigners\": {\n \"description\": \"A list of Amazon Web Services accounts whose public keys CloudFront can use\\nto verify the signatures of signed URLs and signed cookies.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"viewerProtocolPolicy\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"defaultRootObject\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"httpVersion\": {\n \"type\": \"string\"\n },\n \"isIPV6Enabled\": {\n \"type\": \"boolean\"\n },\n \"logging\": {\n \"description\": \"A complex type that controls whether access logs are written for the distribution.\",\n \"properties\": {\n \"bucket\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"includeCookies\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"originGroups\": {\n \"description\": \"A complex data type for the origin groups specified for a distribution.\",\n \"properties\": {\n \"items\": {\n \"description\": \"List of origin groups for a distribution.\",\n \"items\": {\n \"description\": \"An origin group includes two origins (a primary origin and a second origin\\nto failover to) and a failover criteria that you specify. You create an origin\\ngroup to support origin failover in CloudFront. When you create or update\\na distribution, you can specifiy the origin group instead of a single origin,\\nand CloudFront will failover from the primary origin to the second origin\\nunder the failover conditions that you've chosen.\",\n \"properties\": {\n \"failoverCriteria\": {\n \"description\": \"A complex data type that includes information about the failover criteria\\nfor an origin group, including the status codes for which CloudFront will\\nfailover from the primary origin to the second origin.\",\n \"properties\": {\n \"statusCodes\": {\n \"description\": \"A complex data type for the status codes that you specify that, when returned\\nby a primary origin, trigger CloudFront to failover to a second origin.\",\n \"properties\": {\n \"items\": {\n \"description\": \"List of status codes for origin failover.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"members\": {\n \"description\": \"A complex data type for the origins included in an origin group.\",\n \"properties\": {\n \"items\": {\n \"description\": \"List of origins in an origin group.\",\n \"items\": {\n \"description\": \"An origin in an origin group.\",\n \"properties\": {\n \"originID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"origins\": {\n \"description\": \"Contains information about the origins for this distribution.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"An origin.\\n\\n\\nAn origin is the location where content is stored, and from which CloudFront\\ngets content to serve to viewers. To specify an origin:\\n\\n\\n - Use S3OriginConfig to specify an Amazon S3 bucket that is not configured\\n with static website hosting.\\n\\n\\n - Use CustomOriginConfig to specify all other kinds of origins, including:\\n An Amazon S3 bucket that is configured with static website hosting An\\n Elastic Load Balancing load balancer An AWS Elemental MediaPackage endpoint\\n An AWS Elemental MediaStore container Any other HTTP server, running on\\n an Amazon EC2 instance or any other kind of host\\n\\n\\nFor the current maximum number of origins that you can specify per distribution,\\nsee General Quotas on Web Distributions (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html#limits-web-distributions)\\nin the Amazon CloudFront Developer Guide (quotas were formerly referred to\\nas limits).\",\n \"properties\": {\n \"connectionAttempts\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"connectionTimeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"customHeaders\": {\n \"description\": \"A complex type that contains the list of Custom Headers for each origin.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"A complex type that contains HeaderName and HeaderValue elements, if any,\\nfor this distribution.\",\n \"properties\": {\n \"headerName\": {\n \"type\": \"string\"\n },\n \"headerValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"customOriginConfig\": {\n \"description\": \"A custom origin. A custom origin is any origin that is not an Amazon S3 bucket,\\nwith one exception. An Amazon S3 bucket that is configured with static website\\nhosting (https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html)\\nis a custom origin.\",\n \"properties\": {\n \"httpPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"httpSPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originKeepaliveTimeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originProtocolPolicy\": {\n \"type\": \"string\"\n },\n \"originReadTimeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originSSLProtocols\": {\n \"description\": \"A complex type that contains information about the SSL/TLS protocols that\\nCloudFront can use when establishing an HTTPS connection with your origin.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"domainName\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"originAccessControlID\": {\n \"type\": \"string\"\n },\n \"originPath\": {\n \"type\": \"string\"\n },\n \"originShield\": {\n \"description\": \"CloudFront Origin Shield.\\n\\n\\nUsing Origin Shield can help reduce the load on your origin. For more information,\\nsee Using Origin Shield (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"originShieldRegion\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"s3OriginConfig\": {\n \"description\": \"A complex type that contains information about the Amazon S3 origin. If the\\norigin is a custom origin or an S3 bucket that is configured as a website\\nendpoint, use the CustomOriginConfig element instead.\",\n \"properties\": {\n \"originAccessIdentity\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"priceClass\": {\n \"type\": \"string\"\n },\n \"restrictions\": {\n \"description\": \"A complex type that identifies ways in which you want to restrict distribution\\nof your content.\",\n \"properties\": {\n \"geoRestriction\": {\n \"description\": \"A complex type that controls the countries in which your content is distributed.\\nCloudFront determines the location of your users using MaxMind GeoIP databases.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"restrictionType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"staging\": {\n \"type\": \"boolean\"\n },\n \"viewerCertificate\": {\n \"description\": \"A complex type that determines the distribution's SSL/TLS configuration for\\ncommunicating with viewers.\\n\\n\\nIf the distribution doesn't use Aliases (also known as alternate domain names\\nor CNAMEs)—that is, if the distribution uses the CloudFront domain name\\nsuch as d111111abcdef8.cloudfront.net—set CloudFrontDefaultCertificate\\nto true and leave all other fields empty.\\n\\n\\nIf the distribution uses Aliases (alternate domain names or CNAMEs), use\\nthe fields in this type to specify the following settings:\\n\\n\\n * Which viewers the distribution accepts HTTPS connections from: only\\n viewers that support server name indication (SNI) (https://en.wikipedia.org/wiki/Server_Name_Indication)\\n (recommended), or all viewers including those that don't support SNI.\\n To accept HTTPS connections from only viewers that support SNI, set SSLSupportMethod\\n to sni-only. This is recommended. Most browsers and clients support SNI.\\n To accept HTTPS connections from all viewers, including those that don't\\n support SNI, set SSLSupportMethod to vip. This is not recommended, and\\n results in additional monthly charges from CloudFront.\\n\\n\\n * The minimum SSL/TLS protocol version that the distribution can use to\\n communicate with viewers. To specify a minimum version, choose a value\\n for MinimumProtocolVersion. For more information, see Security Policy\\n (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValues-security-policy)\\n in the Amazon CloudFront Developer Guide.\\n\\n\\n * The location of the SSL/TLS certificate, Certificate Manager (ACM) (https://docs.aws.amazon.com/acm/latest/userguide/acm-overview.html)\\n (recommended) or Identity and Access Management (IAM) (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html).\\n You specify the location by setting a value in one of the following fields\\n (not both): ACMCertificateArn IAMCertificateId\\n\\n\\nAll distributions support HTTPS connections from viewers. To require viewers\\nto use HTTPS only, or to redirect them from HTTP to HTTPS, use ViewerProtocolPolicy\\nin the CacheBehavior or DefaultCacheBehavior. To specify how CloudFront should\\nuse SSL/TLS to communicate with your custom origin, use CustomOriginConfig.\\n\\n\\nFor more information, see Using HTTPS with CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https.html)\\nand Using Alternate Domain Names and HTTPS (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-alternate-domain-names.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"acmCertificateARN\": {\n \"type\": \"string\"\n },\n \"acmCertificateRef\": {\n \"description\": \"Reference field for ACMCertificateARN\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificate\": {\n \"type\": \"string\"\n },\n \"certificateSource\": {\n \"type\": \"string\"\n },\n \"cloudFrontDefaultCertificate\": {\n \"type\": \"boolean\"\n },\n \"iamCertificateID\": {\n \"type\": \"string\"\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\"\n },\n \"sslSupportMethod\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"webACLID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"distributionConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Distribution\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Distribution", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..18f884a4704 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Function.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Function.json new file mode 100644 index 00000000000..572a8d00d21 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/Function.json @@ -0,0 +1,194 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Function", + "schema": "{\n \"description\": \"Function is the Schema for the Functions API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FunctionSpec defines the desired state of Function.\",\n \"properties\": {\n \"functionCode\": {\n \"description\": \"The function code. For more information about writing a CloudFront function,\\nsee Writing function code for CloudFront Functions (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/writing-function-code.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"functionConfig\": {\n \"description\": \"Configuration information about the function, including an optional comment\\nand the function's runtime.\",\n \"properties\": {\n \"comment\": {\n \"type\": \"string\"\n },\n \"runtime\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"A name to identify the function.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"functionCode\",\n \"functionConfig\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Function\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Function", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginAccessControl.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginAccessControl.json new file mode 100644 index 00000000000..621a1421733 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginAccessControl.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OriginAccessControl", + "schema": "{\n \"description\": \"OriginAccessControl is the Schema for the OriginAccessControls API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OriginAccessControlSpec defines the desired state of OriginAccessControl.\\n\\n\\nA CloudFront origin access control, including its unique identifier.\",\n \"properties\": {\n \"originAccessControlConfig\": {\n \"description\": \"Contains the origin access control.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"originAccessControlOriginType\": {\n \"type\": \"string\"\n },\n \"signingBehavior\": {\n \"type\": \"string\"\n },\n \"signingProtocol\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"originAccessControlConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Origin Access Control\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Origin Access Control", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginRequestPolicy.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginRequestPolicy.json new file mode 100644 index 00000000000..a4aa9252588 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/OriginRequestPolicy.json @@ -0,0 +1,194 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OriginRequestPolicy", + "schema": "{\n \"description\": \"OriginRequestPolicy is the Schema for the OriginRequestPolicies API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OriginRequestPolicySpec defines the desired state of OriginRequestPolicy.\\n\\n\\nAn origin request policy.\\n\\n\\nWhen it's attached to a cache behavior, the origin request policy determines\\nthe values that CloudFront includes in requests that it sends to the origin.\\nEach request that CloudFront sends to the origin includes the following:\\n\\n\\n - The request body and the URL path (without the domain name) from the\\n viewer request.\\n\\n\\n - The headers that CloudFront automatically includes in every origin request,\\n including Host, User-Agent, and X-Amz-Cf-Id.\\n\\n\\n - All HTTP headers, cookies, and URL query strings that are specified\\n in the cache policy or the origin request policy. These can include items\\n from the viewer request and, in the case of headers, additional ones that\\n are added by CloudFront.\\n\\n\\nCloudFront sends a request when it can't find an object in its cache that\\nmatches the request. If you want to send values to the origin and also include\\nthem in the cache key, use CachePolicy.\",\n \"properties\": {\n \"originRequestPolicyConfig\": {\n \"description\": \"An origin request policy configuration.\",\n \"properties\": {\n \"comment\": {\n \"type\": \"string\"\n },\n \"cookiesConfig\": {\n \"description\": \"An object that determines whether any cookies in viewer requests (and if\\nso, which cookies) are included in requests that CloudFront sends to the\\norigin.\",\n \"properties\": {\n \"cookieBehavior\": {\n \"type\": \"string\"\n },\n \"cookies\": {\n \"description\": \"Contains a list of cookie names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headersConfig\": {\n \"description\": \"An object that determines whether any HTTP headers (and if so, which headers)\\nare included in requests that CloudFront sends to the origin.\",\n \"properties\": {\n \"headerBehavior\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"description\": \"Contains a list of HTTP header names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"queryStringsConfig\": {\n \"description\": \"An object that determines whether any URL query strings in viewer requests\\n(and if so, which query strings) are included in requests that CloudFront\\nsends to the origin.\",\n \"properties\": {\n \"queryStringBehavior\": {\n \"type\": \"string\"\n },\n \"queryStrings\": {\n \"description\": \"Contains a list of query string names.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"originRequestPolicyConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Origin Request Policy\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Origin Request Policy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/ResponseHeadersPolicy.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/ResponseHeadersPolicy.json new file mode 100644 index 00000000000..fff706fe03d --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/components/ResponseHeadersPolicy.json @@ -0,0 +1,194 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ResponseHeadersPolicy", + "schema": "{\n \"description\": \"ResponseHeadersPolicy is the Schema for the ResponseHeadersPolicies API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ResponseHeadersPolicySpec defines the desired state of ResponseHeadersPolicy.\\n\\n\\nA response headers policy.\\n\\n\\nA response headers policy contains information about a set of HTTP response\\nheaders.\\n\\n\\nAfter you create a response headers policy, you can use its ID to attach\\nit to one or more cache behaviors in a CloudFront distribution. When it's\\nattached to a cache behavior, the response headers policy affects the HTTP\\nheaders that CloudFront includes in HTTP responses to requests that match\\nthe cache behavior. CloudFront adds or removes response headers according\\nto the configuration of the response headers policy.\\n\\n\\nFor more information, see Adding or removing HTTP headers in CloudFront responses\\n(https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/modifying-response-headers.html)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"responseHeadersPolicyConfig\": {\n \"description\": \"Contains metadata about the response headers policy, and a set of configurations\\nthat specify the HTTP headers.\",\n \"properties\": {\n \"comment\": {\n \"type\": \"string\"\n },\n \"corsConfig\": {\n \"description\": \"A configuration for a set of HTTP response headers that are used for cross-origin\\nresource sharing (CORS). CloudFront adds these headers to HTTP responses\\nthat it sends for CORS requests that match a cache behavior associated with\\nthis response headers policy.\\n\\n\\nFor more information about CORS, see Cross-Origin Resource Sharing (CORS)\\n(https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) in the MDN Web Docs.\",\n \"properties\": {\n \"accessControlAllowCredentials\": {\n \"type\": \"boolean\"\n },\n \"accessControlAllowHeaders\": {\n \"description\": \"A list of HTTP header names that CloudFront includes as values for the Access-Control-Allow-Headers\\nHTTP response header.\\n\\n\\nFor more information about the Access-Control-Allow-Headers HTTP response\\nheader, see Access-Control-Allow-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"accessControlAllowMethods\": {\n \"description\": \"A list of HTTP methods that CloudFront includes as values for the Access-Control-Allow-Methods\\nHTTP response header.\\n\\n\\nFor more information about the Access-Control-Allow-Methods HTTP response\\nheader, see Access-Control-Allow-Methods (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"accessControlAllowOrigins\": {\n \"description\": \"A list of origins (domain names) that CloudFront can use as the value for\\nthe Access-Control-Allow-Origin HTTP response header.\\n\\n\\nFor more information about the Access-Control-Allow-Origin HTTP response\\nheader, see Access-Control-Allow-Origin (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"accessControlExposeHeaders\": {\n \"description\": \"A list of HTTP headers that CloudFront includes as values for the Access-Control-Expose-Headers\\nHTTP response header.\\n\\n\\nFor more information about the Access-Control-Expose-Headers HTTP response\\nheader, see Access-Control-Expose-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"accessControlMaxAgeSec\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"originOverride\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"customHeadersConfig\": {\n \"description\": \"A list of HTTP response header names and their values. CloudFront includes\\nthese headers in HTTP responses that it sends for requests that match a cache\\nbehavior that's associated with this response headers policy.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"An HTTP response header name and its value. CloudFront includes this header\\nin HTTP responses that it sends for requests that match a cache behavior\\nthat's associated with this response headers policy.\",\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"removeHeadersConfig\": {\n \"description\": \"A list of HTTP header names that CloudFront removes from HTTP responses to\\nrequests that match the cache behavior that this response headers policy\\nis attached to.\",\n \"properties\": {\n \"items\": {\n \"items\": {\n \"description\": \"The name of an HTTP header that CloudFront removes from HTTP responses to\\nrequests that match the cache behavior that this response headers policy\\nis attached to.\",\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"securityHeadersConfig\": {\n \"description\": \"A configuration for a set of security-related HTTP response headers. CloudFront\\nadds these headers to HTTP responses that it sends for requests that match\\na cache behavior associated with this response headers policy.\",\n \"properties\": {\n \"contentSecurityPolicy\": {\n \"description\": \"The policy directives and their values that CloudFront includes as values\\nfor the Content-Security-Policy HTTP response header.\\n\\n\\nFor more information about the Content-Security-Policy HTTP response header,\\nsee Content-Security-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"contentSecurityPolicy\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"contentTypeOptions\": {\n \"description\": \"Determines whether CloudFront includes the X-Content-Type-Options HTTP response\\nheader with its value set to nosniff.\\n\\n\\nFor more information about the X-Content-Type-Options HTTP response header,\\nsee X-Content-Type-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"override\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"frameOptions\": {\n \"description\": \"Determines whether CloudFront includes the X-Frame-Options HTTP response\\nheader and the header's value.\\n\\n\\nFor more information about the X-Frame-Options HTTP response header, see\\nX-Frame-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"frameOption\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"referrerPolicy\": {\n \"description\": \"Determines whether CloudFront includes the Referrer-Policy HTTP response\\nheader and the header's value.\\n\\n\\nFor more information about the Referrer-Policy HTTP response header, see\\nReferrer-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"override\": {\n \"type\": \"boolean\"\n },\n \"referrerPolicy\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"strictTransportSecurity\": {\n \"description\": \"Determines whether CloudFront includes the Strict-Transport-Security HTTP\\nresponse header and the header's value.\\n\\n\\nFor more information about the Strict-Transport-Security HTTP response header,\\nsee Strict-Transport-Security (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"accessControlMaxAgeSec\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"includeSubdomains\": {\n \"type\": \"boolean\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"preload\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"xssProtection\": {\n \"description\": \"Determines whether CloudFront includes the X-XSS-Protection HTTP response\\nheader and the header's value.\\n\\n\\nFor more information about the X-XSS-Protection HTTP response header, see\\nX-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)\\nin the MDN Web Docs.\",\n \"properties\": {\n \"modeBlock\": {\n \"type\": \"boolean\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"protection\": {\n \"type\": \"boolean\"\n },\n \"reportURI\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverTimingHeadersConfig\": {\n \"description\": \"A configuration for enabling the Server-Timing header in HTTP responses sent\\nfrom CloudFront. CloudFront adds this header to HTTP responses that it sends\\nin response to requests that match a cache behavior that's associated with\\nthis response headers policy.\\n\\n\\nYou can use the Server-Timing header to view metrics that can help you gain\\ninsights about the behavior and performance of CloudFront. For example, you\\ncan see which cache layer served a cache hit, or the first byte latency from\\nthe origin when there was a cache miss. You can use the metrics in the Server-Timing\\nheader to troubleshoot issues or test the efficiency of your CloudFront configuration.\\nFor more information, see Server-Timing header (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/understanding-response-headers-policies.html#server-timing-header)\\nin the Amazon CloudFront Developer Guide.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"samplingRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"responseHeadersPolicyConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Response Headers Policy\",\n \"type\": \"object\"\n}", + "version": "cloudfront.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Response Headers Policy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/cloudfront-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-CloudFront_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M28,26.4968343 C28,25.6694852 27.327,24.9962012 26.5,24.9962012 C25.673,24.9962012 25,25.6694852 25,26.4968343 C25,27.3241834 25.673,27.9974675 26.5,27.9974675 C27.327,27.9974675 28,27.3241834 28,26.4968343 L28,26.4968343 Z M29,26.4968343 C29,27.875416 27.879,28.9978895 26.5,28.9978895 C25.121,28.9978895 24,27.875416 24,26.4968343 C24,25.1182527 25.121,23.9957791 26.5,23.9957791 C27.879,23.9957791 29,25.1182527 29,26.4968343 L29,26.4968343 Z M15,18.4934576 C15,17.6661085 14.327,16.9928244 13.5,16.9928244 C12.673,16.9928244 12,17.6661085 12,18.4934576 C12,19.3208067 12.673,19.9940907 13.5,19.9940907 C14.327,19.9940907 15,19.3208067 15,18.4934576 L15,18.4934576 Z M16,18.4934576 C16,19.8720392 14.879,20.9945128 13.5,20.9945128 C12.121,20.9945128 11,19.8720392 11,18.4934576 C11,17.1148759 12.121,15.9924024 13.5,15.9924024 C14.879,15.9924024 16,17.1148759 16,18.4934576 L16,18.4934576 Z M20,10.4900808 C20,11.3174299 20.673,11.990714 21.5,11.990714 C22.327,11.990714 23,11.3174299 23,10.4900808 C23,9.66273178 22.327,8.98944771 21.5,8.98944771 C20.673,8.98944771 20,9.66273178 20,10.4900808 L20,10.4900808 Z M19,10.4900808 C19,9.11149921 20.121,7.98902562 21.5,7.98902562 C22.879,7.98902562 24,9.11149921 24,10.4900808 C24,11.8686625 22.879,12.9911361 21.5,12.9911361 C20.121,12.9911361 19,11.8686625 19,10.4900808 L19,10.4900808 Z M33,19.9940907 C33,15.3561339 30.515,11.0643231 26.506,8.74334388 C25.785,8.8894055 25.09,9.0884895 24.226,9.40062119 L23.886,8.46022442 C24.332,8.29915647 24.732,8.16810117 25.119,8.0560539 C23.512,7.36376181 21.771,6.98860353 20,6.98860353 C19.156,6.98860353 18.325,7.07564025 17.513,7.23470736 C18.1,7.57785214 18.621,7.92099692 19.128,8.30615942 L18.524,9.10349583 C17.809,8.56026663 17.067,8.10207332 16.098,7.59385889 C11.188,9.1385106 7.652,13.4703383 7.091,18.5564842 C8.121,18.3483964 9.109,18.2353487 10.207,18.2073369 L10.232,19.207759 C9.081,19.2367712 8.094,19.3588227 7.014,19.5959227 C7.01,19.7279784 7,19.8630354 7,19.9940907 C7,24.3289196 9.146,28.3246055 12.676,30.7296202 C12.049,28.8608317 11.726,27.0920855 11.726,25.3693586 C11.726,24.3849433 11.895,23.5766022 12.073,22.7212413 L12.197,22.1189872 L13.178,22.3120687 L13.053,22.9263279 C12.877,23.7646816 12.726,24.4879868 12.726,25.3693586 C12.726,27.3211821 13.158,29.3420347 14.028,31.53496 C15.889,32.5003673 17.895,32.9995779 20,32.9995779 C21.379,32.9995779 22.724,32.7784846 24.006,32.3563065 C24.508,31.3668891 24.881,30.4294936 25.195,29.3470369 L26.156,29.6261546 C25.928,30.4144872 25.666,31.1277882 25.355,31.8370874 C26.159,31.4759351 26.919,31.027746 27.634,30.5065261 C27.461,30.0813467 27.284,29.6571677 27.08,29.2469946 L27.975,28.8008064 C28.146,29.1439512 28.288,29.5021023 28.438,29.8552513 C31.335,27.3772058 33,23.8287086 33,19.9940907 L33,19.9940907 Z M34,19.9940907 C34,24.3589323 32.018,28.3966359 28.56,31.072765 C27.34,32.0211651 25.98,32.7534741 24.518,33.2456817 C23.078,33.7458928 21.557,34 20,34 C17.7,34 15.416,33.4267581 13.394,32.3413002 C8.833,29.9002703 6,25.1692742 6,19.9940907 C6,19.7099708 6.007,19.4268514 6.029,19.1487341 C6.37,13.3032678 10.377,8.24513368 16,6.57142752 C19.527,5.50797883 23.589,5.93916075 26.842,7.77893698 C31.257,10.2519804 34,14.9329554 34,19.9940907 L34,19.9940907 Z M18.657,12.7220225 L17.999,11.9687047 C16.879,12.9471175 16.007,13.9855556 14.989,15.5552179 L15.827,16.0994475 C16.792,14.6138207 17.611,13.6354079 18.657,12.7220225 L18.657,12.7220225 Z M16.812,20.1531578 C19.108,20.9414904 21.111,22.2000214 23.117,24.1138289 L23.807,23.3905237 C21.694,21.3726724 19.574,20.0441118 17.137,19.2067585 L16.812,20.1531578 Z M23.823,13.3252771 C25.699,16.1874847 26.756,19.3298104 26.963,22.6642173 L25.965,22.7262435 C25.769,19.5679109 24.767,16.5896543 22.987,13.8735084 L23.823,13.3252771 Z\" id=\"Amazon-CloudFront_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/model.json b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/model.json new file mode 100644 index 00000000000..2c9248d8a98 --- /dev/null +++ b/server/meshmodel/aws-cloudfront-controller/v1.0.0/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS CloudFront", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-CloudFront_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-CloudFront_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M41.5,43.5 C40.397,43.5 39.5,42.603 39.5,41.5 C39.5,40.397 40.397,39.5 41.5,39.5 C42.603,39.5 43.5,40.397 43.5,41.5 C43.5,42.603 42.603,43.5 41.5,43.5 L41.5,43.5 Z M41.5,37.5 C39.294,37.5 37.5,39.294 37.5,41.5 C37.5,43.706 39.294,45.5 41.5,45.5 C43.706,45.5 45.5,43.706 45.5,41.5 C45.5,39.294 43.706,37.5 41.5,37.5 L41.5,37.5 Z M22.5,32.5 C21.397,32.5 20.5,31.603 20.5,30.5 C20.5,29.397 21.397,28.5 22.5,28.5 C23.603,28.5 24.5,29.397 24.5,30.5 C24.5,31.603 23.603,32.5 22.5,32.5 L22.5,32.5 Z M22.5,26.5 C20.294,26.5 18.5,28.294 18.5,30.5 C18.5,32.706 20.294,34.5 22.5,34.5 C24.706,34.5 26.5,32.706 26.5,30.5 C26.5,28.294 24.706,26.5 22.5,26.5 L22.5,26.5 Z M45.389,47.124 C45.168,46.607 44.936,46.094 44.685,45.591 L42.896,46.486 C43.17,47.035 43.42,47.599 43.656,48.165 C42.82,48.762 41.943,49.288 41.028,49.74 C41.384,48.865 41.694,47.975 41.974,47.012 L40.054,46.454 C39.564,48.134 38.985,49.581 38.184,51.133 C36.357,51.698 34.452,52 32.5,52 C29.465,52 26.567,51.314 23.871,49.976 C22.503,46.615 21.838,43.534 21.838,40.559 C21.838,39.267 22.063,38.196 22.322,36.956 C22.386,36.652 22.45,36.343 22.514,36.024 L20.551,35.638 C20.49,35.949 20.427,36.25 20.365,36.545 C20.094,37.838 19.838,39.06 19.838,40.559 C19.838,43.074 20.274,45.644 21.154,48.354 C16.072,44.724 13,38.854 13,32.5 C13,32.389 13.01,32.273 13.012,32.161 C14.642,31.799 16.123,31.614 17.854,31.571 L17.804,29.572 C16.169,29.612 14.694,29.779 13.163,30.084 C14.081,22.683 19.212,16.394 26.323,14.019 C27.873,14.818 29.02,15.524 30.135,16.37 L31.344,14.776 C30.646,14.248 29.934,13.771 29.146,13.299 C30.244,13.108 31.363,13 32.5,13 C35.032,13 37.532,13.494 39.849,14.439 C39.342,14.593 38.82,14.763 38.243,14.971 L38.923,16.852 C40.316,16.349 41.408,16.04 42.571,15.821 C48.399,19.341 52,25.667 52,32.5 C52,38.156 49.605,43.416 45.389,47.124 L45.389,47.124 Z M43.008,13.749 C39.826,11.95 36.192,11 32.5,11 C30.392,11 28.324,11.301 26.357,11.895 C17.723,14.464 11.568,22.23 11.045,31.196 C11.01,31.625 11,32.062 11,32.5 C11,40.444 15.352,47.707 22.354,51.455 C25.459,53.12 28.968,54 32.5,54 C34.892,54 37.229,53.61 39.437,52.843 C41.684,52.086 43.773,50.963 45.646,49.507 C50.955,45.399 54,39.2 54,32.5 C54,24.732 49.787,17.546 43.008,13.749 L43.008,13.749 Z M38.384,37.411 L37.003,38.858 C34.022,36.015 31.047,34.146 27.637,32.975 L28.287,31.083 C31.979,32.351 35.188,34.362 38.384,37.411 L38.384,37.411 Z M38.444,22.364 C41.282,26.692 42.88,31.444 43.193,36.488 L41.197,36.612 C40.905,31.919 39.417,27.495 36.772,23.46 L38.444,22.364 Z M26.451,26.797 L24.773,25.708 C26.316,23.332 27.639,21.758 29.336,20.278 L30.65,21.786 C29.103,23.135 27.886,24.587 26.451,26.797 L26.451,26.797 Z M34.5,16.5 C35.603,16.5 36.5,17.397 36.5,18.5 C36.5,19.603 35.603,20.5 34.5,20.5 C33.397,20.5 32.5,19.603 32.5,18.5 C32.5,17.397 33.397,16.5 34.5,16.5 L34.5,16.5 Z M34.5,22.5 C36.706,22.5 38.5,20.706 38.5,18.5 C38.5,16.294 36.706,14.5 34.5,14.5 C32.294,14.5 30.5,16.294 30.5,18.5 C30.5,20.706 32.294,22.5 34.5,22.5 L34.5,22.5 Z\" id=\"Amazon-CloudFront_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-cloudfront-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Content Delivery Network", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..2e3ce7cf115 --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBCluster.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBCluster.json new file mode 100644 index 00000000000..2dd0f2f4934 --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBCluster.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DBCluster", + "schema": "{\n \"description\": \"DBCluster is the Schema for the DBClusters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DBClusterSpec defines the desired state of DBCluster.\\n\\n\\nDetailed information about a cluster.\",\n \"properties\": {\n \"availabilityZones\": {\n \"description\": \"A list of Amazon EC2 Availability Zones that instances in the cluster can\\nbe created in.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"backupRetentionPeriod\": {\n \"description\": \"The number of days for which automated backups are retained. You must specify\\na minimum value of 1.\\n\\n\\nDefault: 1\\n\\n\\nConstraints:\\n\\n\\n - Must be a value from 1 to 35.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"dbClusterIdentifier\": {\n \"description\": \"The cluster identifier. This parameter is stored as a lowercase string.\\n\\n\\nConstraints:\\n\\n\\n - Must contain from 1 to 63 letters, numbers, or hyphens.\\n\\n\\n - The first character must be a letter.\\n\\n\\n - Cannot end with a hyphen or contain two consecutive hyphens.\\n\\n\\nExample: my-cluster\",\n \"type\": \"string\"\n },\n \"dbClusterParameterGroupName\": {\n \"description\": \"The name of the cluster parameter group to associate with this cluster.\",\n \"type\": \"string\"\n },\n \"dbSubnetGroupName\": {\n \"description\": \"A subnet group to associate with this cluster.\\n\\n\\nConstraints: Must match the name of an existing DBSubnetGroup. Must not be\\ndefault.\\n\\n\\nExample: mySubnetgroup\",\n \"type\": \"string\"\n },\n \"dbSubnetGroupRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"deletionProtection\": {\n \"description\": \"Specifies whether this cluster can be deleted. If DeletionProtection is enabled,\\nthe cluster cannot be deleted unless it is modified and DeletionProtection\\nis disabled. DeletionProtection protects clusters from being accidentally\\ndeleted.\",\n \"type\": \"boolean\"\n },\n \"destinationRegion\": {\n \"description\": \"DestinationRegion is used for presigning the request to a given region.\",\n \"type\": \"string\"\n },\n \"enableCloudwatchLogsExports\": {\n \"description\": \"A list of log types that need to be enabled for exporting to Amazon CloudWatch\\nLogs. You can enable audit logs or profiler logs. For more information, see\\nAuditing Amazon DocumentDB Events (https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html)\\nand Profiling Amazon DocumentDB Operations (https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"engine\": {\n \"description\": \"The name of the database engine to be used for this cluster.\\n\\n\\nValid values: docdb\",\n \"type\": \"string\"\n },\n \"engineVersion\": {\n \"description\": \"The version number of the database engine to use. The --engine-version will\\ndefault to the latest major engine version. For production workloads, we\\nrecommend explicitly declaring this parameter with the intended major engine\\nversion.\",\n \"type\": \"string\"\n },\n \"globalClusterIdentifier\": {\n \"description\": \"The cluster identifier of the new global cluster.\",\n \"type\": \"string\"\n },\n \"kmsKeyID\": {\n \"description\": \"The KMS key identifier for an encrypted cluster.\\n\\n\\nThe KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption\\nkey. If you are creating a cluster using the same Amazon Web Services account\\nthat owns the KMS encryption key that is used to encrypt the new cluster,\\nyou can use the KMS key alias instead of the ARN for the KMS encryption key.\\n\\n\\nIf an encryption key is not specified in KmsKeyId:\\n\\n\\n - If the StorageEncrypted parameter is true, Amazon DocumentDB uses your\\n default encryption key.\\n\\n\\nKMS creates the default encryption key for your Amazon Web Services account.\\nYour Amazon Web Services account has a different default encryption key for\\neach Amazon Web Services Regions.\",\n \"type\": \"string\"\n },\n \"kmsKeyRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"masterUserPassword\": {\n \"description\": \"The password for the master database user. This password can contain any\\nprintable ASCII character except forward slash (/), double quote (\\\"), or\\nthe \\\"at\\\" symbol (@).\\n\\n\\nConstraints: Must contain from 8 to 100 characters.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key is the key within the secret\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name is unique within a namespace to reference a secret resource.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"namespace defines the space within which the secret name must be unique.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"masterUsername\": {\n \"description\": \"The name of the master user for the cluster.\\n\\n\\nConstraints:\\n\\n\\n - Must be from 1 to 63 letters or numbers.\\n\\n\\n - The first character must be a letter.\\n\\n\\n - Cannot be a reserved word for the chosen database engine.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port number on which the instances in the cluster accept connections.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"preSignedURL\": {\n \"description\": \"Not currently supported.\",\n \"type\": \"string\"\n },\n \"preferredBackupWindow\": {\n \"description\": \"The daily time range during which automated backups are created if automated\\nbackups are enabled using the BackupRetentionPeriod parameter.\\n\\n\\nThe default is a 30-minute window selected at random from an 8-hour block\\nof time for each Amazon Web Services Region.\\n\\n\\nConstraints:\\n\\n\\n - Must be in the format hh24:mi-hh24:mi.\\n\\n\\n - Must be in Universal Coordinated Time (UTC).\\n\\n\\n - Must not conflict with the preferred maintenance window.\\n\\n\\n - Must be at least 30 minutes.\",\n \"type\": \"string\"\n },\n \"preferredMaintenanceWindow\": {\n \"description\": \"The weekly time range during which system maintenance can occur, in Universal\\nCoordinated Time (UTC).\\n\\n\\nFormat: ddd:hh24:mi-ddd:hh24:mi\\n\\n\\nThe default is a 30-minute window selected at random from an 8-hour block\\nof time for each Amazon Web Services Region, occurring on a random day of\\nthe week.\\n\\n\\nValid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun\\n\\n\\nConstraints: Minimum 30-minute window.\",\n \"type\": \"string\"\n },\n \"snapshotIdentifier\": {\n \"description\": \"The identifier for the snapshot or cluster snapshot to restore from.\\n\\n\\nYou can use either the name or the Amazon Resource Name (ARN) to specify\\na cluster snapshot. However, you can use only the ARN to specify a snapshot.\\n\\n\\nConstraints:\\n\\n\\n - Must match the identifier of an existing snapshot.\",\n \"type\": \"string\"\n },\n \"sourceRegion\": {\n \"description\": \"SourceRegion is the source region where the resource exists. This is not\\nsent over the wire and is only used for presigning. This value should always\\nhave the same region as the source ARN.\",\n \"type\": \"string\"\n },\n \"storageEncrypted\": {\n \"description\": \"Specifies whether the cluster is encrypted.\",\n \"type\": \"boolean\"\n },\n \"storageType\": {\n \"description\": \"The storage type to associate with the DB cluster.\\n\\n\\nFor information on storage types for Amazon DocumentDB clusters, see Cluster\\nstorage configurations in the Amazon DocumentDB Developer Guide.\\n\\n\\n# Valid values for storage type - standard | iopt1\\n\\n\\n# Default value is standard\\n\\n\\nWhen you create a DocumentDB DB cluster with the storage type set to iopt1,\\nthe storage type is returned in the response. The storage type isn't returned\\nwhen you set it to standard.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"The tags to be assigned to the cluster.\",\n \"items\": {\n \"description\": \"Metadata assigned to an Amazon DocumentDB resource consisting of a key-value\\npair.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"vpcSecurityGroupIDs\": {\n \"description\": \"A list of EC2 VPC security groups to associate with this cluster.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"vpcSecurityGroupRefs\": {\n \"items\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"dbClusterIdentifier\",\n \"engine\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"DB Cluster\",\n \"type\": \"object\"\n}", + "version": "documentdb.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "DB Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBInstance.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBInstance.json new file mode 100644 index 00000000000..e6adf396adb --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBInstance.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DBInstance", + "schema": "{\n \"description\": \"DBInstance is the Schema for the DBInstances API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DBInstanceSpec defines the desired state of DBInstance.\\n\\n\\nDetailed information about an instance.\",\n \"properties\": {\n \"autoMinorVersionUpgrade\": {\n \"description\": \"This parameter does not apply to Amazon DocumentDB. Amazon DocumentDB does\\nnot perform minor version upgrades regardless of the value set.\\n\\n\\nDefault: false\",\n \"type\": \"boolean\"\n },\n \"availabilityZone\": {\n \"description\": \"The Amazon EC2 Availability Zone that the instance is created in.\\n\\n\\nDefault: A random, system-chosen Availability Zone in the endpoint's Amazon\\nWeb Services Region.\\n\\n\\nExample: us-east-1d\",\n \"type\": \"string\"\n },\n \"caCertificateIdentifier\": {\n \"description\": \"The CA certificate identifier to use for the DB instance's server certificate.\\n\\n\\nFor more information, see Updating Your Amazon DocumentDB TLS Certificates\\n(https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html)\\nand Encrypting Data in Transit (https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html)\\nin the Amazon DocumentDB Developer Guide.\",\n \"type\": \"string\"\n },\n \"copyTagsToSnapshot\": {\n \"description\": \"A value that indicates whether to copy tags from the DB instance to snapshots\\nof the DB instance. By default, tags are not copied.\",\n \"type\": \"boolean\"\n },\n \"dbClusterIdentifier\": {\n \"description\": \"The identifier of the cluster that the instance will belong to.\",\n \"type\": \"string\"\n },\n \"dbInstanceClass\": {\n \"description\": \"The compute and memory capacity of the instance; for example, db.r5.large.\",\n \"type\": \"string\"\n },\n \"dbInstanceIdentifier\": {\n \"description\": \"The instance identifier. This parameter is stored as a lowercase string.\\n\\n\\nConstraints:\\n\\n\\n - Must contain from 1 to 63 letters, numbers, or hyphens.\\n\\n\\n - The first character must be a letter.\\n\\n\\n - Cannot end with a hyphen or contain two consecutive hyphens.\\n\\n\\nExample: mydbinstance\",\n \"type\": \"string\"\n },\n \"engine\": {\n \"description\": \"The name of the database engine to be used for this instance.\\n\\n\\nValid value: docdb\",\n \"type\": \"string\"\n },\n \"performanceInsightsEnabled\": {\n \"description\": \"A value that indicates whether to enable Performance Insights for the DB\\nInstance. For more information, see Using Amazon Performance Insights (https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html).\",\n \"type\": \"boolean\"\n },\n \"performanceInsightsKMSKeyID\": {\n \"description\": \"The KMS key identifier for encryption of Performance Insights data.\\n\\n\\nThe KMS key identifier is the key ARN, key ID, alias ARN, or alias name for\\nthe KMS key.\\n\\n\\nIf you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon\\nDocumentDB uses your default KMS key. There is a default KMS key for your\\nAmazon Web Services account. Your Amazon Web Services account has a different\\ndefault KMS key for each Amazon Web Services region.\",\n \"type\": \"string\"\n },\n \"performanceInsightsKMSKeyRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preferredMaintenanceWindow\": {\n \"description\": \"The time range each week during which system maintenance can occur, in Universal\\nCoordinated Time (UTC).\\n\\n\\nFormat: ddd:hh24:mi-ddd:hh24:mi\\n\\n\\nThe default is a 30-minute window selected at random from an 8-hour block\\nof time for each Amazon Web Services Region, occurring on a random day of\\nthe week.\\n\\n\\nValid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun\\n\\n\\nConstraints: Minimum 30-minute window.\",\n \"type\": \"string\"\n },\n \"promotionTier\": {\n \"description\": \"A value that specifies the order in which an Amazon DocumentDB replica is\\npromoted to the primary instance after a failure of the existing primary\\ninstance.\\n\\n\\nDefault: 1\\n\\n\\nValid values: 0-15\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tags\": {\n \"description\": \"The tags to be assigned to the instance. You can assign up to 10 tags to\\nan instance.\",\n \"items\": {\n \"description\": \"Metadata assigned to an Amazon DocumentDB resource consisting of a key-value\\npair.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"dbClusterIdentifier\",\n \"dbInstanceClass\",\n \"dbInstanceIdentifier\",\n \"engine\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"DB Instance\",\n \"type\": \"object\"\n}", + "version": "documentdb.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "DB Instance", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBSubnetGroup.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBSubnetGroup.json new file mode 100644 index 00000000000..5b3728ae408 --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/DBSubnetGroup.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DBSubnetGroup", + "schema": "{\n \"description\": \"DBSubnetGroup is the Schema for the DBSubnetGroups API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DBSubnetGroupSpec defines the desired state of DBSubnetGroup.\\n\\n\\nDetailed information about a subnet group.\",\n \"properties\": {\n \"description\": {\n \"description\": \"The description for the subnet group.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The name for the subnet group. This value is stored as a lowercase string.\\n\\n\\nConstraints: Must contain no more than 255 letters, numbers, periods, underscores,\\nspaces, or hyphens. Must not be default.\\n\\n\\nExample: mySubnetgroup\",\n \"type\": \"string\"\n },\n \"subnetIDs\": {\n \"description\": \"The Amazon EC2 subnet IDs for the subnet group.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subnetRefs\": {\n \"items\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"The tags to be assigned to the subnet group.\",\n \"items\": {\n \"description\": \"Metadata assigned to an Amazon DocumentDB resource consisting of a key-value\\npair.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"description\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"DB Subnet Group\",\n \"type\": \"object\"\n}", + "version": "documentdb.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "DB Subnet Group", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..bf70f7d243b --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/documentdb-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"40px\" height=\"40px\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/model.json b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/model.json new file mode 100644 index 00000000000..1d297ff7927 --- /dev/null +++ b/server/meshmodel/aws-documentdb-controller/v1.0.0/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "App Definition and Development" + }, + "displayName": "AWS DocumentDB", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 40 40\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-DocumentDB_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-DocumentDB_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Database\" fill=\"#C925D1\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M17,6.99633491 C22.304,6.99633491 26,8.5715404 26,9.98533964 C26,11.3991389 22.304,12.9743444 17,12.9743444 C11.696,12.9743444 8,11.3991389 8,9.98533964 C8,8.5715404 11.696,6.99633491 17,6.99633491 L17,6.99633491 Z M16.647,33.0036651 C11.552,33.0036651 8,31.3935879 8,29.9498986 L8,25.5162082 C9.729,26.9519268 13.446,27.7699178 17.081,27.7699178 C17.966,27.7699178 18.857,27.7201011 19.732,27.6234566 L19.621,26.6330997 C18.783,26.7257588 17.929,26.7735829 17.081,26.7735829 C11.967,26.7735829 8,25.131623 8,23.7198164 L8,18.5378785 C9.729,19.9735971 13.446,20.7915881 17.081,20.7915881 C17.984,20.7915881 18.877,20.740775 19.734,20.6431342 L19.619,19.6537736 C18.801,19.7474291 17.946,19.7952532 17.081,19.7952532 C11.967,19.7952532 8,18.1532932 8,16.7414867 L8,11.7916948 C9.729,13.2154574 13.442,13.9706793 17,13.9706793 C20.558,13.9706793 24.271,13.2154574 26,11.7916948 L26,13.9706793 L27,13.9706793 L27,9.98533964 C27,7.39686155 21.848,6 17,6 C12.152,6 7,7.39686155 7,9.98533964 L7,29.9498986 C7,32.2584066 11.147,34 16.647,34 C20.301,34 23.579,33.1869907 25.204,31.8797993 L24.575,31.1046507 C23.143,32.2574102 20.03,33.0036651 16.647,33.0036651 L16.647,33.0036651 Z M30.259,20.9450237 C30.533,20.9450237 30.775,21.0546205 30.941,21.2538875 C31.275,21.6544141 31.179,22.2811088 31.155,22.4026616 C31.164,23.3153044 31.709,23.5105861 31.771,23.5295164 C31.986,23.5952745 32.138,23.7975305 32.132,24.0207095 C32.126,24.2448849 31.978,24.4391702 31.76,24.4929723 C31.709,24.5089136 31.164,24.7041953 31.164,25.7094972 C31.175,26.2754154 30.901,26.9041028 30.274,26.9230331 L29.46,26.9230331 L29.46,25.9266982 L30.138,25.9266982 C30.154,25.8619364 30.165,25.77127 30.164,25.7194606 C30.164,24.8665979 30.444,24.3355514 30.75,24.0107462 C30.444,23.6869373 30.164,23.1588798 30.164,22.3109988 C30.186,22.1545742 30.189,22.0210654 30.179,21.9413586 L29.46,21.9413586 L29.46,20.9450237 L30.259,20.9450237 Z M27.866,20.9450237 L28.46,20.9450237 L28.46,21.9413586 L28.001,21.9413586 C27.985,22.0011387 27.974,22.0858271 27.975,22.1515852 C27.975,23.0024553 27.694,23.5325054 27.389,23.8573106 C27.694,24.1811195 27.975,24.709177 27.975,25.557058 C27.953,25.7134825 27.95,25.8469914 27.96,25.9266982 L28.46,25.9266982 L28.46,26.9230331 L27.881,26.9230331 C27.606,26.9230331 27.364,26.8134363 27.198,26.6141693 C26.864,26.2136427 26.96,25.586948 26.983,25.4663915 C26.975,24.5527524 26.43,24.3574707 26.367,24.3385404 C26.152,24.2727823 26.001,24.0705263 26.007,23.8473473 C26.013,23.6231719 26.161,23.4288866 26.379,23.3750845 C26.43,23.3591432 26.975,23.1638615 26.975,22.1585596 C26.964,21.5926414 27.237,20.963954 27.866,20.9450237 L27.866,20.9450237 Z M31,18.9523538 L31,16.959684 L31.229,16.959684 L33,18.8078853 L33,18.9523538 L31,18.9523538 Z M33,28.9157029 L25,28.9157029 L25,16.959684 L30,16.959684 L30,19.4505213 C30,19.7255097 30.224,19.9486888 30.5,19.9486888 L33,19.9486888 L33,28.9157029 Z M31.804,16.117781 C31.71,16.0191439 31.579,15.9633491 31.442,15.9633491 L31,15.9633491 L30,15.9633491 L24.5,15.9633491 C24.224,15.9633491 24,16.1865281 24,16.4615166 L24,29.4138704 C24,29.6888588 24.224,29.9120379 24.5,29.9120379 L33.5,29.9120379 C33.776,29.9120379 34,29.6888588 34,29.4138704 L34,19.9486888 L34,18.9523538 L34,18.6086183 C34,18.4800911 33.95,18.3565456 33.861,18.2648828 L31.804,16.117781 Z\" id=\"Amazon-DocumentDB_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-documentdb-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..280e3059630 --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm" + }, + "model": { + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Cluster.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Cluster.json new file mode 100644 index 00000000000..04d23233fb6 --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Cluster.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Cluster", + "schema": "{\n \"description\": \"Cluster is the Schema for the Clusters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ClusterSpec defines the desired state of Cluster.\\n\\n\\nA regional grouping of one or more container instances where you can run\\ntask requests. Each account receives a default cluster the first time you\\nuse the Amazon ECS service, but you may also create other clusters. Clusters\\nmay contain more than one instance type simultaneously.\",\n \"properties\": {\n \"capacityProviders\": {\n \"description\": \"The short name of one or more capacity providers to associate with the cluster.\\nA capacity provider must be associated with a cluster before it can be included\\nas part of the default capacity provider strategy of the cluster or used\\nin a capacity provider strategy when calling the CreateService (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html)\\nor RunTask (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html)\\nactions.\\n\\n\\nIf specifying a capacity provider that uses an Auto Scaling group, the capacity\\nprovider must be created but not associated with another cluster. New Auto\\nScaling group capacity providers can be created with the CreateCapacityProvider\\n(https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateCapacityProvider.html)\\nAPI operation.\\n\\n\\nTo use a Fargate capacity provider, specify either the FARGATE or FARGATE_SPOT\\ncapacity providers. The Fargate capacity providers are available to all accounts\\nand only need to be associated with a cluster to be used.\\n\\n\\nThe PutCapacityProvider (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutCapacityProvider.html)\\nAPI operation is used to update the list of available capacity providers\\nfor a cluster after the cluster is created.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configuration\": {\n \"description\": \"The execute command configuration for the cluster.\",\n \"properties\": {\n \"executeCommandConfiguration\": {\n \"description\": \"The details of the execute command configuration.\",\n \"properties\": {\n \"kmsKeyID\": {\n \"type\": \"string\"\n },\n \"logConfiguration\": {\n \"description\": \"The log configuration for the results of the execute command actions. The\\nlogs can be sent to CloudWatch Logs or an Amazon S3 bucket.\",\n \"properties\": {\n \"cloudWatchEncryptionEnabled\": {\n \"type\": \"boolean\"\n },\n \"cloudWatchLogGroupName\": {\n \"type\": \"string\"\n },\n \"s3BucketName\": {\n \"type\": \"string\"\n },\n \"s3EncryptionEnabled\": {\n \"type\": \"boolean\"\n },\n \"s3KeyPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"logging\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"defaultCapacityProviderStrategy\": {\n \"description\": \"The capacity provider strategy to set as the default for the cluster. After\\na default capacity provider strategy is set for a cluster, when you call\\nthe CreateService (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html)\\nor RunTask (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html)\\nAPIs with no capacity provider strategy or launch type specified, the default\\ncapacity provider strategy for the cluster is used.\\n\\n\\nIf a default capacity provider strategy isn't defined for a cluster when\\nit was created, it can be defined later with the PutClusterCapacityProviders\\nAPI operation.\",\n \"items\": {\n \"description\": \"The details of a capacity provider strategy. A capacity provider strategy\\ncan be set when using the RunTask or CreateCluster APIs or as the default\\ncapacity provider strategy for a cluster with the CreateCluster API.\\n\\n\\nOnly capacity providers that are already associated with a cluster and have\\nan ACTIVE or UPDATING status can be used in a capacity provider strategy.\\nThe PutClusterCapacityProviders API is used to associate a capacity provider\\nwith a cluster.\\n\\n\\nIf specifying a capacity provider that uses an Auto Scaling group, the capacity\\nprovider must already be created. New Auto Scaling group capacity providers\\ncan be created with the CreateCapacityProvider API operation.\\n\\n\\nTo use a Fargate capacity provider, specify either the FARGATE or FARGATE_SPOT\\ncapacity providers. The Fargate capacity providers are available to all accounts\\nand only need to be associated with a cluster to be used in a capacity provider\\nstrategy.\\n\\n\\nA capacity provider strategy may contain a maximum of 6 capacity providers.\",\n \"properties\": {\n \"base\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"capacityProvider\": {\n \"type\": \"string\"\n },\n \"weight\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"The name of your cluster. If you don't specify a name for your cluster, you\\ncreate a cluster that's named default. Up to 255 letters (uppercase and lowercase),\\nnumbers, underscores, and hyphens are allowed.\",\n \"type\": \"string\"\n },\n \"serviceConnectDefaults\": {\n \"description\": \"Use this parameter to set a default Service Connect namespace. After you\\nset a default Service Connect namespace, any new services with Service Connect\\nturned on that are created in the cluster are added as client services in\\nthe namespace. This setting only applies to new services that set the enabled\\nparameter to true in the ServiceConnectConfiguration. You can set the namespace\\nof each service individually in the ServiceConnectConfiguration to override\\nthis default parameter.\\n\\n\\nTasks that run in a namespace can use short names to connect to services\\nin the namespace. Tasks can connect to services across all of the clusters\\nin the namespace. Tasks connect through a managed proxy container that collects\\nlogs and metrics for increased visibility. Only the tasks that Amazon ECS\\nservices create are supported with Service Connect. For more information,\\nsee Service Connect (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"settings\": {\n \"description\": \"The setting to use when creating a cluster. This parameter is used to turn\\non CloudWatch Container Insights for a cluster. If this value is specified,\\nit overrides the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.\",\n \"items\": {\n \"description\": \"The settings to use when creating a cluster. This parameter is used to turn\\non CloudWatch Container Insights for a cluster.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"The metadata that you apply to the cluster to help you categorize and organize\\nthem. Each tag consists of a key and an optional value. You define both.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"items\": {\n \"description\": \"The metadata that you apply to a resource to help you categorize and organize\\nthem. Each tag consists of a key and an optional value. You define them.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Cluster\",\n \"type\": \"object\"\n}", + "version": "ecs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm" + }, + "model": { + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..9c5400fe676 --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm" + }, + "model": { + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Service.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Service.json new file mode 100644 index 00000000000..1fa75e1dcd3 --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/Service.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Service", + "schema": "{\n \"description\": \"Service is the Schema for the Services API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceSpec defines the desired state of Service.\\n\\n\\nDetails on a service within a cluster.\",\n \"properties\": {\n \"capacityProviderStrategy\": {\n \"description\": \"The capacity provider strategy to use for the service.\\n\\n\\nIf a capacityProviderStrategy is specified, the launchType parameter must\\nbe omitted. If no capacityProviderStrategy or launchType is specified, the\\ndefaultCapacityProviderStrategy for the cluster is used.\\n\\n\\nA capacity provider strategy may contain a maximum of 6 capacity providers.\",\n \"items\": {\n \"description\": \"The details of a capacity provider strategy. A capacity provider strategy\\ncan be set when using the RunTask or CreateCluster APIs or as the default\\ncapacity provider strategy for a cluster with the CreateCluster API.\\n\\n\\nOnly capacity providers that are already associated with a cluster and have\\nan ACTIVE or UPDATING status can be used in a capacity provider strategy.\\nThe PutClusterCapacityProviders API is used to associate a capacity provider\\nwith a cluster.\\n\\n\\nIf specifying a capacity provider that uses an Auto Scaling group, the capacity\\nprovider must already be created. New Auto Scaling group capacity providers\\ncan be created with the CreateCapacityProvider API operation.\\n\\n\\nTo use a Fargate capacity provider, specify either the FARGATE or FARGATE_SPOT\\ncapacity providers. The Fargate capacity providers are available to all accounts\\nand only need to be associated with a cluster to be used in a capacity provider\\nstrategy.\\n\\n\\nA capacity provider strategy may contain a maximum of 6 capacity providers.\",\n \"properties\": {\n \"base\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"capacityProvider\": {\n \"type\": \"string\"\n },\n \"weight\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cluster\": {\n \"description\": \"The short name or full Amazon Resource Name (ARN) of the cluster that you\\nrun your service on. If you do not specify a cluster, the default cluster\\nis assumed.\",\n \"type\": \"string\"\n },\n \"clusterRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"deploymentConfiguration\": {\n \"description\": \"Optional deployment parameters that control how many tasks run during the\\ndeployment and the ordering of stopping and starting tasks.\",\n \"properties\": {\n \"alarms\": {\n \"description\": \"One of the methods which provide a way for you to quickly identify when a\\ndeployment has failed, and then to optionally roll back the failure to the\\nlast working deployment.\\n\\n\\nWhen the alarms are generated, Amazon ECS sets the service deployment to\\nfailed. Set the rollback parameter to have Amazon ECS to roll back your service\\nto the last completed deployment after a failure.\\n\\n\\nYou can only use the DeploymentAlarms method to detect failures when the\\nDeploymentController is set to ECS (rolling update).\\n\\n\\nFor more information, see Rolling update (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html)\\nin the Amazon Elastic Container Service Developer Guide .\",\n \"properties\": {\n \"alarmNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enable\": {\n \"type\": \"boolean\"\n },\n \"rollback\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"deploymentCircuitBreaker\": {\n \"description\": \"The deployment circuit breaker can only be used for services using the rolling\\nupdate (ECS) deployment type.\\n\\n\\nThe deployment circuit breaker determines whether a service deployment will\\nfail if the service can't reach a steady state. If it is turned on, a service\\ndeployment will transition to a failed state and stop launching new tasks.\\nYou can also configure Amazon ECS to roll back your service to the last completed\\ndeployment after a failure. For more information, see Rolling update (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nFor more information about API failure reasons, see API failure reasons (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/api_failures_messages.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"enable\": {\n \"type\": \"boolean\"\n },\n \"rollback\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maximumPercent\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minimumHealthyPercent\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"deploymentController\": {\n \"description\": \"The deployment controller to use for the service. If no deployment controller\\nis specified, the default value of ECS is used.\",\n \"properties\": {\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"desiredCount\": {\n \"description\": \"The number of instantiations of the specified task definition to place and\\nkeep running in your service.\\n\\n\\nThis is required if schedulingStrategy is REPLICA or isn't specified. If\\nschedulingStrategy is DAEMON then this isn't required.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"enableECSManagedTags\": {\n \"description\": \"Specifies whether to turn on Amazon ECS managed tags for the tasks within\\nthe service. For more information, see Tagging your Amazon ECS resources\\n(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nWhen you use Amazon ECS managed tags, you need to set the propagateTags request\\nparameter.\",\n \"type\": \"boolean\"\n },\n \"enableExecuteCommand\": {\n \"description\": \"Determines whether the execute command functionality is turned on for the\\nservice. If true, this enables execute command functionality on all containers\\nin the service tasks.\",\n \"type\": \"boolean\"\n },\n \"healthCheckGracePeriodSeconds\": {\n \"description\": \"The period of time, in seconds, that the Amazon ECS service scheduler ignores\\nunhealthy Elastic Load Balancing target health checks after a task has first\\nstarted. This is only used when your service is configured to use a load\\nbalancer. If your service has a load balancer defined and you don't specify\\na health check grace period value, the default value of 0 is used.\\n\\n\\nIf you do not use an Elastic Load Balancing, we recommend that you use the\\nstartPeriod in the task definition health check parameters. For more information,\\nsee Health check (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_HealthCheck.html).\\n\\n\\nIf your service's tasks take a while to start and respond to Elastic Load\\nBalancing health checks, you can specify a health check grace period of up\\nto 2,147,483,647 seconds (about 69 years). During that time, the Amazon ECS\\nservice scheduler ignores health check status. This grace period can prevent\\nthe service scheduler from marking tasks as unhealthy and stopping them before\\nthey have time to come up.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"launchType\": {\n \"description\": \"The infrastructure that you run your service on. For more information, see\\nAmazon ECS launch types (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nThe FARGATE launch type runs your tasks on Fargate On-Demand infrastructure.\\n\\n\\nFargate Spot infrastructure is available for use but a capacity provider\\nstrategy must be used. For more information, see Fargate capacity providers\\n(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-capacity-providers.html)\\nin the Amazon ECS User Guide for Fargate.\\n\\n\\nThe EC2 launch type runs your tasks on Amazon EC2 instances registered to\\nyour cluster.\\n\\n\\nThe EXTERNAL launch type runs your tasks on your on-premises server or virtual\\nmachine (VM) capacity registered to your cluster.\\n\\n\\nA service can use either a launch type or a capacity provider strategy. If\\na launchType is specified, the capacityProviderStrategy parameter must be\\nomitted.\",\n \"type\": \"string\"\n },\n \"loadBalancers\": {\n \"description\": \"A load balancer object representing the load balancers to use with your service.\\nFor more information, see Service load balancing (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nIf the service uses the rolling update (ECS) deployment controller and using\\neither an Application Load Balancer or Network Load Balancer, you must specify\\none or more target group ARNs to attach to the service. The service-linked\\nrole is required for services that use multiple target groups. For more information,\\nsee Using service-linked roles for Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using-service-linked-roles.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nIf the service uses the CODE_DEPLOY deployment controller, the service is\\nrequired to use either an Application Load Balancer or Network Load Balancer.\\nWhen creating an CodeDeploy deployment group, you specify two target groups\\n(referred to as a targetGroupPair). During a deployment, CodeDeploy determines\\nwhich task set in your service has the status PRIMARY, and it associates\\none target group with it. Then, it also associates the other target group\\nwith the replacement task set. The load balancer can also have up to two\\nlisteners: a required listener for production traffic and an optional listener\\nthat you can use to perform validation tests with Lambda functions before\\nrouting production traffic to it.\\n\\n\\nIf you use the CODE_DEPLOY deployment controller, these values can be changed\\nwhen updating the service.\\n\\n\\nFor Application Load Balancers and Network Load Balancers, this object must\\ncontain the load balancer target group ARN, the container name, and the container\\nport to access from the load balancer. The container name must be as it appears\\nin a container definition. The load balancer name parameter must be omitted.\\nWhen a task from this service is placed on a container instance, the container\\ninstance and port combination is registered as a target in the target group\\nthat's specified here.\\n\\n\\nFor Classic Load Balancers, this object must contain the load balancer name,\\nthe container name , and the container port to access from the load balancer.\\nThe container name must be as it appears in a container definition. The target\\ngroup ARN parameter must be omitted. When a task from this service is placed\\non a container instance, the container instance is registered with the load\\nbalancer that's specified here.\\n\\n\\nServices with tasks that use the awsvpc network mode (for example, those\\nwith the Fargate launch type) only support Application Load Balancers and\\nNetwork Load Balancers. Classic Load Balancers aren't supported. Also, when\\nyou create any target groups for these services, you must choose ip as the\\ntarget type, not instance. This is because tasks that use the awsvpc network\\nmode are associated with an elastic network interface, not an Amazon EC2\\ninstance.\",\n \"items\": {\n \"description\": \"The load balancer configuration to use with a service or task set.\\n\\n\\nWhen you add, update, or remove a load balancer configuration, Amazon ECS\\nstarts a new deployment with the updated Elastic Load Balancing configuration.\\nThis causes tasks to register to and deregister from load balancers.\\n\\n\\nWe recommend that you verify this on a test environment before you update\\nthe Elastic Load Balancing configuration.\\n\\n\\nA service-linked role is required for services that use multiple target groups.\\nFor more information, see Using service-linked roles (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using-service-linked-roles.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"containerPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"loadBalancerName\": {\n \"type\": \"string\"\n },\n \"targetGroupARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"The name of your service. Up to 255 letters (uppercase and lowercase), numbers,\\nunderscores, and hyphens are allowed. Service names must be unique within\\na cluster, but you can have similarly named services in multiple clusters\\nwithin a Region or across multiple Regions.\",\n \"type\": \"string\"\n },\n \"networkConfiguration\": {\n \"description\": \"The network configuration for the service. This parameter is required for\\ntask definitions that use the awsvpc network mode to receive their own elastic\\nnetwork interface, and it isn't supported for other network modes. For more\\ninformation, see Task networking (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"awsVPCConfiguration\": {\n \"description\": \"An object representing the networking details for a task or service. For\\nexample awsvpcConfiguration={subnets=[\\\"subnet-12344321\\\"],securityGroups=[\\\"sg-12344321\\\"]}\",\n \"properties\": {\n \"assignPublicIP\": {\n \"type\": \"string\"\n },\n \"securityGroups\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subnets\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"placementConstraints\": {\n \"description\": \"An array of placement constraint objects to use for tasks in your service.\\nYou can specify a maximum of 10 constraints for each task. This limit includes\\nconstraints in the task definition and those specified at runtime.\",\n \"items\": {\n \"description\": \"An object representing a constraint on task placement. For more information,\\nsee Task placement constraints (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nIf you're using the Fargate launch type, task placement constraints aren't\\nsupported.\",\n \"properties\": {\n \"expression\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"placementStrategy\": {\n \"description\": \"The placement strategy objects to use for tasks in your service. You can\\nspecify a maximum of 5 strategy rules for each service.\",\n \"items\": {\n \"description\": \"The task placement strategy for a task or service. For more information,\\nsee Task placement strategies (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"field\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"platformVersion\": {\n \"description\": \"The platform version that your tasks in the service are running on. A platform\\nversion is specified only for tasks using the Fargate launch type. If one\\nisn't specified, the LATEST platform version is used. For more information,\\nsee Fargate platform versions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"type\": \"string\"\n },\n \"propagateTags\": {\n \"description\": \"Specifies whether to propagate the tags from the task definition to the task.\\nIf no value is specified, the tags aren't propagated. Tags can only be propagated\\nto the task during task creation. To add tags to a task after task creation,\\nuse the TagResource (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TagResource.html)\\nAPI action.\\n\\n\\nThe default is NONE.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"The name or full Amazon Resource Name (ARN) of the IAM role that allows Amazon\\nECS to make calls to your load balancer on your behalf. This parameter is\\nonly permitted if you are using a load balancer with your service and your\\ntask definition doesn't use the awsvpc network mode. If you specify the role\\nparameter, you must also specify a load balancer object with the loadBalancers\\nparameter.\\n\\n\\nIf your account has already created the Amazon ECS service-linked role, that\\nrole is used for your service unless you specify a role here. The service-linked\\nrole is required if your task definition uses the awsvpc network mode or\\nif the service is configured to use service discovery, an external deployment\\ncontroller, multiple target groups, or Elastic Inference accelerators in\\nwhich case you don't specify a role here. For more information, see Using\\nservice-linked roles for Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using-service-linked-roles.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nIf your specified role has a path other than /, then you must either specify\\nthe full role ARN (this is recommended) or prefix the role name with the\\npath. For example, if a role with the name bar has a path of /foo/ then you\\nwould specify /foo/bar as the role name. For more information, see Friendly\\nnames and paths (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names)\\nin the IAM User Guide.\",\n \"type\": \"string\"\n },\n \"roleRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"schedulingStrategy\": {\n \"description\": \"The scheduling strategy to use for the service. For more information, see\\nServices (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).\\n\\n\\nThere are two service scheduler strategies available:\\n\\n\\n - REPLICA-The replica scheduling strategy places and maintains the desired\\n number of tasks across your cluster. By default, the service scheduler\\n spreads tasks across Availability Zones. You can use task placement strategies\\n and constraints to customize task placement decisions. This scheduler\\n strategy is required if the service uses the CODE_DEPLOY or EXTERNAL deployment\\n controller types.\\n\\n\\n - DAEMON-The daemon scheduling strategy deploys exactly one task on each\\n active container instance that meets all of the task placement constraints\\n that you specify in your cluster. The service scheduler also evaluates\\n the task placement constraints for running tasks and will stop tasks that\\n don't meet the placement constraints. When you're using this strategy,\\n you don't need to specify a desired number of tasks, a task placement\\n strategy, or use Service Auto Scaling policies. Tasks using the Fargate\\n launch type or the CODE_DEPLOY or EXTERNAL deployment controller types\\n don't support the DAEMON scheduling strategy.\",\n \"type\": \"string\"\n },\n \"serviceConnectConfiguration\": {\n \"description\": \"The configuration for this service to discover and connect to services, and\\nbe discovered by, and connected from, other services within a namespace.\\n\\n\\nTasks that run in a namespace can use short names to connect to services\\nin the namespace. Tasks can connect to services across all of the clusters\\nin the namespace. Tasks connect through a managed proxy container that collects\\nlogs and metrics for increased visibility. Only the tasks that Amazon ECS\\nservices create are supported with Service Connect. For more information,\\nsee Service Connect (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"logConfiguration\": {\n \"description\": \"The log configuration for the container. This parameter maps to LogConfig\\nin the Create a container (https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate)\\nsection of the Docker Remote API (https://docs.docker.com/engine/api/v1.35/)\\nand the --log-driver option to docker run (https://docs.docker.com/engine/reference/commandline/run/).\\n\\n\\nBy default, containers use the same logging driver that the Docker daemon\\nuses. However, the container might use a different logging driver than the\\nDocker daemon by specifying a log driver configuration in the container definition.\\nFor more information about the options for different supported log drivers,\\nsee Configure logging drivers (https://docs.docker.com/engine/admin/logging/overview/)\\nin the Docker documentation.\\n\\n\\nUnderstand the following when specifying a log configuration for your containers.\\n\\n\\n * Amazon ECS currently supports a subset of the logging drivers available\\n to the Docker daemon. Additional log drivers may be available in future\\n releases of the Amazon ECS container agent. For tasks on Fargate, the\\n supported log drivers are awslogs, splunk, and awsfirelens. For tasks\\n hosted on Amazon EC2 instances, the supported log drivers are awslogs,\\n fluentd, gelf, json-file, journald, logentries,syslog, splunk, and awsfirelens.\\n\\n\\n * This parameter requires version 1.18 of the Docker Remote API or greater\\n on your container instance.\\n\\n\\n * For tasks that are hosted on Amazon EC2 instances, the Amazon ECS container\\n agent must register the available logging drivers with the ECS_AVAILABLE_LOGGING_DRIVERS\\n environment variable before containers placed on that instance can use\\n these log configuration options. For more information, see Amazon ECS\\n container agent configuration (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html)\\n in the Amazon Elastic Container Service Developer Guide.\\n\\n\\n * For tasks that are on Fargate, because you don't have access to the\\n underlying infrastructure your tasks are hosted on, any additional software\\n needed must be installed outside of the task. For example, the Fluentd\\n output aggregators or a remote host running Logstash to send Gelf logs\\n to.\",\n \"properties\": {\n \"logDriver\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"secretOptions\": {\n \"items\": {\n \"description\": \"An object representing the secret to expose to your container. Secrets can\\nbe exposed to a container in the following ways:\\n\\n\\n - To inject sensitive data into your containers as environment variables,\\n use the secrets container definition parameter.\\n\\n\\n - To reference sensitive information in the log configuration of a container,\\n use the secretOptions container definition parameter.\\n\\n\\nFor more information, see Specifying sensitive data (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"services\": {\n \"items\": {\n \"description\": \"The Service Connect service object configuration. For more information, see\\nService Connect (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"clientAliases\": {\n \"items\": {\n \"description\": \"Each alias (\\\"endpoint\\\") is a fully-qualified name and port number that other\\ntasks (\\\"clients\\\") can use to connect to this service.\\n\\n\\nEach name and port mapping must be unique within the namespace.\\n\\n\\nTasks that run in a namespace can use short names to connect to services\\nin the namespace. Tasks can connect to services across all of the clusters\\nin the namespace. Tasks connect through a managed proxy container that collects\\nlogs and metrics for increased visibility. Only the tasks that Amazon ECS\\nservices create are supported with Service Connect. For more information,\\nsee Service Connect (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"dnsName\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"discoveryName\": {\n \"type\": \"string\"\n },\n \"ingressPortOverride\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"portName\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"description\": \"An object that represents the timeout configurations for Service Connect.\\n\\n\\nIf idleTimeout is set to a time that is less than perRequestTimeout, the\\nconnection will close when the idleTimeout is reached and not the perRequestTimeout.\",\n \"properties\": {\n \"idleTimeoutSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"perRequestTimeoutSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"An object that represents the configuration for Service Connect TLS.\",\n \"properties\": {\n \"issuerCertificateAuthority\": {\n \"description\": \"An object that represents the Amazon Web Services Private Certificate Authority\\ncertificate.\",\n \"properties\": {\n \"awsPCAAuthorityARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kmsKey\": {\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceRegistries\": {\n \"description\": \"The details of the service discovery registry to associate with this service.\\nFor more information, see Service discovery (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html).\\n\\n\\nEach service may be associated with one service registry. Multiple service\\nregistries for each service isn't supported.\",\n \"items\": {\n \"description\": \"The details for the service registry.\\n\\n\\nEach service may be associated with one service registry. Multiple service\\nregistries for each service are not supported.\\n\\n\\nWhen you add, update, or remove the service registries configuration, Amazon\\nECS starts a new deployment. New tasks are registered and deregistered to\\nthe updated service registry configuration.\",\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"containerPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"port\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"registryARN\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"The metadata that you apply to the service to help you categorize and organize\\nthem. Each tag consists of a key and an optional value, both of which you\\ndefine. When a service is deleted, the tags are deleted as well.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"items\": {\n \"description\": \"The metadata that you apply to a resource to help you categorize and organize\\nthem. Each tag consists of a key and an optional value. You define them.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"taskDefinition\": {\n \"description\": \"The family and revision (family:revision) or full ARN of the task definition\\nto run in your service. If a revision isn't specified, the latest ACTIVE\\nrevision is used.\\n\\n\\nA task definition must be specified if the service uses either the ECS or\\nCODE_DEPLOY deployment controllers.\\n\\n\\nFor more information about deployment types, see Amazon ECS deployment types\\n(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html).\",\n \"type\": \"string\"\n },\n \"taskDefinitionRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeConfigurations\": {\n \"description\": \"The configuration for a volume specified in the task definition as a volume\\nthat is configured at launch time. Currently, the only supported volume type\\nis an Amazon EBS volume.\",\n \"items\": {\n \"description\": \"The configuration for a volume specified in the task definition as a volume\\nthat is configured at launch time. Currently, the only supported volume type\\nis an Amazon EBS volume.\",\n \"properties\": {\n \"managedEBSVolume\": {\n \"description\": \"The configuration for the Amazon EBS volume that Amazon ECS creates and manages\\non your behalf. These settings are used to create each Amazon EBS volume,\\nwith one volume created for each task in the service.\\n\\n\\nMany of these parameters map 1:1 with the Amazon EBS CreateVolume API request\\nparameters.\",\n \"properties\": {\n \"encrypted\": {\n \"type\": \"boolean\"\n },\n \"filesystemType\": {\n \"type\": \"string\"\n },\n \"iops\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"kmsKeyID\": {\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"type\": \"string\"\n },\n \"sizeInGiB\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"snapshotID\": {\n \"type\": \"string\"\n },\n \"tagSpecifications\": {\n \"items\": {\n \"description\": \"The tag specifications of an Amazon EBS volume.\",\n \"properties\": {\n \"propagateTags\": {\n \"type\": \"string\"\n },\n \"resourceType\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"description\": \"The metadata that you apply to a resource to help you categorize and organize\\nthem. Each tag consists of a key and an optional value. You define them.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"throughput\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Service\",\n \"type\": \"object\"\n}", + "version": "ecs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm" + }, + "model": { + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/TaskDefinition.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/TaskDefinition.json new file mode 100644 index 00000000000..2fe11c65bda --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/components/TaskDefinition.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TaskDefinition", + "schema": "{\n \"description\": \"TaskDefinition is the Schema for the TaskDefinitions API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"TaskDefinitionSpec defines the desired state of TaskDefinition.\\n\\n\\nThe details of a task definition which describes the container and volume\\ndefinitions of an Amazon Elastic Container Service task. You can specify\\nwhich Docker images to use, the required resources, and other configurations\\nrelated to launching the task definition through an Amazon ECS service or\\ntask.\",\n \"properties\": {\n \"containerDefinitions\": {\n \"description\": \"A list of container definitions in JSON format that describe the different\\ncontainers that make up your task.\",\n \"items\": {\n \"description\": \"Container definitions are used in task definitions to describe the different\\ncontainers that are launched as part of a task.\",\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cpu\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"credentialSpecs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dependsOn\": {\n \"items\": {\n \"description\": \"The dependencies defined for container startup and shutdown. A container\\ncan contain multiple dependencies. When a dependency is defined for container\\nstartup, for container shutdown it is reversed.\\n\\n\\nYour Amazon ECS container instances require at least version 1.26.0 of the\\ncontainer agent to use container dependencies. However, we recommend using\\nthe latest container agent version. For information about checking your agent\\nversion and updating to the latest version, see Updating the Amazon ECS Container\\nAgent (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html)\\nin the Amazon Elastic Container Service Developer Guide. If you're using\\nan Amazon ECS-optimized Linux AMI, your instance needs at least version 1.26.0-1\\nof the ecs-init package. If your container instances are launched from version\\n20190301 or later, then they contain the required versions of the container\\nagent and ecs-init. For more information, see Amazon ECS-optimized Linux\\nAMI (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nFor tasks that use the Fargate launch type, the task or service requires\\nthe following platforms:\\n\\n\\n - Linux platform version 1.3.0 or later.\\n\\n\\n - Windows platform version 1.0.0 or later.\\n\\n\\nFor more information about how to create a container dependency, see Container\\ndependency (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-containerdependency)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"condition\": {\n \"type\": \"string\"\n },\n \"containerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"disableNetworking\": {\n \"type\": \"boolean\"\n },\n \"dnsSearchDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsServers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dockerLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"dockerSecurityOptions\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"entryPoint\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"environment\": {\n \"items\": {\n \"description\": \"A key-value pair object.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"environmentFiles\": {\n \"items\": {\n \"description\": \"A list of files containing the environment variables to pass to a container.\\nYou can specify up to ten environment files. The file must have a .env file\\nextension. Each line in an environment file should contain an environment\\nvariable in VARIABLE=VALUE format. Lines beginning with # are treated as\\ncomments and are ignored.\\n\\n\\nIf there are environment variables specified using the environment parameter\\nin a container definition, they take precedence over the variables contained\\nwithin an environment file. If multiple environment files are specified that\\ncontain the same variable, they're processed from the top down. We recommend\\nthat you use unique variable names. For more information, see Specifying\\nenvironment variables (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/taskdef-envfiles.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nYou must use the following platforms for the Fargate launch type:\\n\\n\\n - Linux platform version 1.4.0 or later.\\n\\n\\n - Windows platform version 1.0.0 or later.\\n\\n\\nConsider the following when using the Fargate launch type:\\n\\n\\n - The file is handled like a native Docker env-file.\\n\\n\\n - There is no support for shell escape handling.\\n\\n\\n - The container entry point interperts the VARIABLE values.\",\n \"properties\": {\n \"type\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"essential\": {\n \"type\": \"boolean\"\n },\n \"extraHosts\": {\n \"items\": {\n \"description\": \"Hostnames and IP address entries that are added to the /etc/hosts file of\\na container via the extraHosts parameter of its ContainerDefinition.\",\n \"properties\": {\n \"hostname\": {\n \"type\": \"string\"\n },\n \"ipAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"firelensConfiguration\": {\n \"description\": \"The FireLens configuration for the container. This is used to specify and\\nconfigure a log router for container logs. For more information, see Custom\\nlog routing (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheck\": {\n \"description\": \"An object representing a container health check. Health check parameters\\nthat are specified in a container definition override any Docker health checks\\nthat exist in the container image (such as those specified in a parent image\\nor from the image's Dockerfile). This configuration maps to the HEALTHCHECK\\nparameter of docker run (https://docs.docker.com/engine/reference/run/).\\n\\n\\nThe Amazon ECS container agent only monitors and reports on the health checks\\nspecified in the task definition. Amazon ECS does not monitor Docker health\\nchecks that are embedded in a container image and not specified in the container\\ndefinition. Health check parameters that are specified in a container definition\\noverride any Docker health checks that exist in the container image.\\n\\n\\nYou can view the health status of both individual containers and a task with\\nthe DescribeTasks API operation or when viewing the task details in the console.\\n\\n\\nThe health check is designed to make sure that your containers survive agent\\nrestarts, upgrades, or temporary unavailability.\\n\\n\\nThe following describes the possible healthStatus values for a container:\\n\\n\\n * HEALTHY-The container health check has passed successfully.\\n\\n\\n * UNHEALTHY-The container health check has failed.\\n\\n\\n * UNKNOWN-The container health check is being evaluated, there's no container\\n health check defined, or Amazon ECS doesn't have the health status of\\n the container.\\n\\n\\nThe following describes the possible healthStatus values based on the container\\nhealth checker status of essential containers in the task with the following\\npriority order (high to low):\\n\\n\\n * UNHEALTHY-One or more essential containers have failed their health\\n check.\\n\\n\\n * UNKNOWN-Any essential container running within the task is in an UNKNOWN\\n state and no other essential containers have an UNHEALTHY state.\\n\\n\\n * HEALTHY-All essential containers within the task have passed their health\\n checks.\\n\\n\\nConsider the following task health example with 2 containers.\\n\\n\\n * If Container1 is UNHEALTHY and Container2 is UNKNOWN, the task health\\n is UNHEALTHY.\\n\\n\\n * If Container1 is UNHEALTHY and Container2 is HEALTHY, the task health\\n is UNHEALTHY.\\n\\n\\n * If Container1 is HEALTHY and Container2 is UNKNOWN, the task health\\n is UNKNOWN.\\n\\n\\n * If Container1 is HEALTHY and Container2 is HEALTHY, the task health\\n is HEALTHY.\\n\\n\\nConsider the following task health example with 3 containers.\\n\\n\\n * If Container1 is UNHEALTHY and Container2 is UNKNOWN, and Container3\\n is UNKNOWN, the task health is UNHEALTHY.\\n\\n\\n * If Container1 is UNHEALTHY and Container2 is UNKNOWN, and Container3\\n is HEALTHY, the task health is UNHEALTHY.\\n\\n\\n * If Container1 is UNHEALTHY and Container2 is HEALTHY, and Container3\\n is HEALTHY, the task health is UNHEALTHY.\\n\\n\\n * If Container1 is HEALTHY and Container2 is UNKNOWN, and Container3 is\\n HEALTHY, the task health is UNKNOWN.\\n\\n\\n * If Container1 is HEALTHY and Container2 is UNKNOWN, and Container3 is\\n UNKNOWN, the task health is UNKNOWN.\\n\\n\\n * If Container1 is HEALTHY and Container2 is HEALTHY, and Container3 is\\n HEALTHY, the task health is HEALTHY.\\n\\n\\nIf a task is run manually, and not as part of a service, the task will continue\\nits lifecycle regardless of its health status. For tasks that are part of\\na service, if the task reports as unhealthy then the task will be stopped\\nand the service scheduler will replace it.\\n\\n\\nThe following are notes about container health check support:\\n\\n\\n * When the Amazon ECS agent cannot connect to the Amazon ECS service,\\n the service reports the container as UNHEALTHY.\\n\\n\\n * The health check statuses are the \\\"last heard from\\\" response from the\\n Amazon ECS agent. There are no assumptions made about the status of the\\n container health checks.\\n\\n\\n * Container health checks require version 1.17.0 or greater of the Amazon\\n ECS container agent. For more information, see Updating the Amazon ECS\\n container agent (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html).\\n\\n\\n * Container health checks are supported for Fargate tasks if you're using\\n platform version 1.1.0 or greater. For more information, see Fargate platform\\n versions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html).\\n\\n\\n * Container health checks aren't supported for tasks that are part of\\n a service that's configured to use a Classic Load Balancer.\",\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"retries\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"startPeriod\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"hostname\": {\n \"type\": \"string\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"interactive\": {\n \"type\": \"boolean\"\n },\n \"links\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"linuxParameters\": {\n \"description\": \"The Linux-specific options that are applied to the container, such as Linux\\nKernelCapabilities (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_KernelCapabilities.html).\",\n \"properties\": {\n \"capabilities\": {\n \"description\": \"The Linux capabilities for the container that are added to or dropped from\\nthe default configuration provided by Docker. For more information about\\nthe default capabilities and the non-default available capabilities, see\\nRuntime privilege and Linux capabilities (https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities)\\nin the Docker run reference. For more detailed information about these Linux\\ncapabilities, see the capabilities(7) (http://man7.org/linux/man-pages/man7/capabilities.7.html)\\nLinux manual page.\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"devices\": {\n \"items\": {\n \"description\": \"An object representing a container instance host device.\",\n \"properties\": {\n \"containerPath\": {\n \"type\": \"string\"\n },\n \"hostPath\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"initProcessEnabled\": {\n \"type\": \"boolean\"\n },\n \"maxSwap\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"sharedMemorySize\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"swappiness\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tmpfs\": {\n \"items\": {\n \"description\": \"The container path, mount options, and size of the tmpfs mount.\",\n \"properties\": {\n \"containerPath\": {\n \"type\": \"string\"\n },\n \"mountOptions\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"size\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"logConfiguration\": {\n \"description\": \"The log configuration for the container. This parameter maps to LogConfig\\nin the Create a container (https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate)\\nsection of the Docker Remote API (https://docs.docker.com/engine/api/v1.35/)\\nand the --log-driver option to docker run (https://docs.docker.com/engine/reference/commandline/run/).\\n\\n\\nBy default, containers use the same logging driver that the Docker daemon\\nuses. However, the container might use a different logging driver than the\\nDocker daemon by specifying a log driver configuration in the container definition.\\nFor more information about the options for different supported log drivers,\\nsee Configure logging drivers (https://docs.docker.com/engine/admin/logging/overview/)\\nin the Docker documentation.\\n\\n\\nUnderstand the following when specifying a log configuration for your containers.\\n\\n\\n * Amazon ECS currently supports a subset of the logging drivers available\\n to the Docker daemon. Additional log drivers may be available in future\\n releases of the Amazon ECS container agent. For tasks on Fargate, the\\n supported log drivers are awslogs, splunk, and awsfirelens. For tasks\\n hosted on Amazon EC2 instances, the supported log drivers are awslogs,\\n fluentd, gelf, json-file, journald, logentries,syslog, splunk, and awsfirelens.\\n\\n\\n * This parameter requires version 1.18 of the Docker Remote API or greater\\n on your container instance.\\n\\n\\n * For tasks that are hosted on Amazon EC2 instances, the Amazon ECS container\\n agent must register the available logging drivers with the ECS_AVAILABLE_LOGGING_DRIVERS\\n environment variable before containers placed on that instance can use\\n these log configuration options. For more information, see Amazon ECS\\n container agent configuration (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html)\\n in the Amazon Elastic Container Service Developer Guide.\\n\\n\\n * For tasks that are on Fargate, because you don't have access to the\\n underlying infrastructure your tasks are hosted on, any additional software\\n needed must be installed outside of the task. For example, the Fluentd\\n output aggregators or a remote host running Logstash to send Gelf logs\\n to.\",\n \"properties\": {\n \"logDriver\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"secretOptions\": {\n \"items\": {\n \"description\": \"An object representing the secret to expose to your container. Secrets can\\nbe exposed to a container in the following ways:\\n\\n\\n - To inject sensitive data into your containers as environment variables,\\n use the secrets container definition parameter.\\n\\n\\n - To reference sensitive information in the log configuration of a container,\\n use the secretOptions container definition parameter.\\n\\n\\nFor more information, see Specifying sensitive data (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"memory\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"memoryReservation\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"mountPoints\": {\n \"items\": {\n \"description\": \"The details for a volume mount point that's used in a container definition.\",\n \"properties\": {\n \"containerPath\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"sourceVolume\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"portMappings\": {\n \"items\": {\n \"description\": \"Port mappings allow containers to access ports on the host container instance\\nto send or receive traffic. Port mappings are specified as part of the container\\ndefinition.\\n\\n\\nIf you use containers in a task with the awsvpc or host network mode, specify\\nthe exposed ports using containerPort. The hostPort can be left blank or\\nit must be the same value as the containerPort.\\n\\n\\nMost fields of this parameter (containerPort, hostPort, protocol) maps to\\nPortBindings in the Create a container (https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate)\\nsection of the Docker Remote API (https://docs.docker.com/engine/api/v1.35/)\\nand the --publish option to docker run (https://docs.docker.com/engine/reference/commandline/run/).\\nIf the network mode of a task definition is set to host, host ports must\\neither be undefined or match the container port in the port mapping.\\n\\n\\nYou can't expose the same container port for multiple protocols. If you attempt\\nthis, an error is returned.\\n\\n\\nAfter a task reaches the RUNNING status, manual and automatic host and container\\nport assignments are visible in the networkBindings section of DescribeTasks\\nAPI responses.\",\n \"properties\": {\n \"appProtocol\": {\n \"type\": \"string\"\n },\n \"containerPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"containerPortRange\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"pseudoTerminal\": {\n \"type\": \"boolean\"\n },\n \"readonlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"repositoryCredentials\": {\n \"description\": \"The repository credentials for private registry authentication.\",\n \"properties\": {\n \"credentialsParameter\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"resourceRequirements\": {\n \"items\": {\n \"description\": \"The type and amount of a resource to assign to a container. The supported\\nresource types are GPUs and Elastic Inference accelerators. For more information,\\nsee Working with GPUs on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html)\\nor Working with Amazon Elastic Inference on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html)\\nin the Amazon Elastic Container Service Developer Guide\",\n \"properties\": {\n \"type\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"secrets\": {\n \"items\": {\n \"description\": \"An object representing the secret to expose to your container. Secrets can\\nbe exposed to a container in the following ways:\\n\\n\\n - To inject sensitive data into your containers as environment variables,\\n use the secrets container definition parameter.\\n\\n\\n - To reference sensitive information in the log configuration of a container,\\n use the secretOptions container definition parameter.\\n\\n\\nFor more information, see Specifying sensitive data (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"startTimeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"stopTimeout\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"systemControls\": {\n \"items\": {\n \"description\": \"A list of namespaced kernel parameters to set in the container. This parameter\\nmaps to Sysctls in the Create a container (https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate)\\nsection of the Docker Remote API (https://docs.docker.com/engine/api/v1.35/)\\nand the --sysctl option to docker run (https://docs.docker.com/engine/reference/run/#security-configuration).\\nFor example, you can configure net.ipv4.tcp_keepalive_time setting to maintain\\nlonger lived connections.\\n\\n\\nWe don't recommend that you specify network-related systemControls parameters\\nfor multiple containers in a single task that also uses either the awsvpc\\nor host network mode. Doing this has the following disadvantages:\\n\\n\\n - For tasks that use the awsvpc network mode including Fargate, if you\\n set systemControls for any container, it applies to all containers in\\n the task. If you set different systemControls for multiple containers\\n in a single task, the container that's started last determines which systemControls\\n take effect.\\n\\n\\n - For tasks that use the host network mode, the network namespace systemControls\\n aren't supported.\\n\\n\\nIf you're setting an IPC resource namespace to use for the containers in\\nthe task, the following conditions apply to your system controls. For more\\ninformation, see IPC mode (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_definition_ipcmode).\\n\\n\\n - For tasks that use the host IPC mode, IPC namespace systemControls aren't\\n supported.\\n\\n\\n - For tasks that use the task IPC mode, IPC namespace systemControls values\\n apply to all containers within a task.\\n\\n\\nThis parameter is not supported for Windows containers.\\n\\n\\nThis parameter is only supported for tasks that are hosted on Fargate if\\nthe tasks are using platform version 1.4.0 or later (Linux). This isn't supported\\nfor Windows containers on Fargate.\",\n \"properties\": {\n \"namespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ulimits\": {\n \"items\": {\n \"description\": \"The ulimit settings to pass to the container.\\n\\n\\nAmazon ECS tasks hosted on Fargate use the default resource limit values\\nset by the operating system with the exception of the nofile resource limit\\nparameter which Fargate overrides. The nofile resource limit sets a restriction\\non the number of open files that a container can use. The default nofile\\nsoft limit is 1024 and the default hard limit is 65535.\\n\\n\\nYou can specify the ulimit settings for a container in a task definition.\",\n \"properties\": {\n \"hardLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"softLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"user\": {\n \"type\": \"string\"\n },\n \"volumesFrom\": {\n \"items\": {\n \"description\": \"Details on a data volume from another container in the same task definition.\",\n \"properties\": {\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"sourceContainer\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDirectory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cpu\": {\n \"description\": \"The number of CPU units used by the task. It can be expressed as an integer\\nusing CPU units (for example, 1024) or as a string using vCPUs (for example,\\n1 vCPU or 1 vcpu) in a task definition. String values are converted to an\\ninteger indicating the CPU units when the task definition is registered.\\n\\n\\nTask-level CPU and memory parameters are ignored for Windows containers.\\nWe recommend specifying container-level resources for Windows containers.\\n\\n\\nIf you're using the EC2 launch type, this field is optional. Supported values\\nare between 128 CPU units (0.125 vCPUs) and 10240 CPU units (10 vCPUs). If\\nyou do not specify a value, the parameter is ignored.\\n\\n\\nIf you're using the Fargate launch type, this field is required and you must\\nuse one of the following values, which determines your range of supported\\nvalues for the memory parameter:\\n\\n\\nThe CPU units cannot be less than 1 vCPU when you use Windows containers\\non Fargate.\\n\\n\\n - 256 (.25 vCPU) - Available memory values: 512 (0.5 GB), 1024 (1 GB),\\n 2048 (2 GB)\\n\\n\\n - 512 (.5 vCPU) - Available memory values: 1024 (1 GB), 2048 (2 GB), 3072\\n (3 GB), 4096 (4 GB)\\n\\n\\n - 1024 (1 vCPU) - Available memory values: 2048 (2 GB), 3072 (3 GB), 4096\\n (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)\\n\\n\\n - 2048 (2 vCPU) - Available memory values: 4096 (4 GB) and 16384 (16 GB)\\n in increments of 1024 (1 GB)\\n\\n\\n - 4096 (4 vCPU) - Available memory values: 8192 (8 GB) and 30720 (30 GB)\\n in increments of 1024 (1 GB)\\n\\n\\n - 8192 (8 vCPU) - Available memory values: 16 GB and 60 GB in 4 GB increments\\n This option requires Linux platform 1.4.0 or later.\\n\\n\\n - 16384 (16vCPU) - Available memory values: 32GB and 120 GB in 8 GB increments\\n This option requires Linux platform 1.4.0 or later.\",\n \"type\": \"string\"\n },\n \"ephemeralStorage\": {\n \"description\": \"The amount of ephemeral storage to allocate for the task. This parameter\\nis used to expand the total amount of ephemeral storage available, beyond\\nthe default amount, for tasks hosted on Fargate. For more information, see\\nUsing data volumes in tasks (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_data_volumes.html)\\nin the Amazon ECS Developer Guide.\\n\\n\\nFor tasks using the Fargate launch type, the task requires the following\\nplatforms:\\n\\n\\n - Linux platform version 1.4.0 or later.\\n\\n\\n - Windows platform version 1.0.0 or later.\",\n \"properties\": {\n \"sizeInGiB\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"executionRoleARN\": {\n \"description\": \"The Amazon Resource Name (ARN) of the task execution role that grants the\\nAmazon ECS container agent permission to make Amazon Web Services API calls\\non your behalf. The task execution IAM role is required depending on the\\nrequirements of your task. For more information, see Amazon ECS task execution\\nIAM role (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"type\": \"string\"\n },\n \"family\": {\n \"description\": \"You must specify a family for a task definition. You can use it track multiple\\nversions of the same task definition. The family is used as a name for your\\ntask definition. Up to 255 letters (uppercase and lowercase), numbers, underscores,\\nand hyphens are allowed.\",\n \"type\": \"string\"\n },\n \"inferenceAccelerators\": {\n \"description\": \"The Elastic Inference accelerators to use for the containers in the task.\",\n \"items\": {\n \"description\": \"Details on an Elastic Inference accelerator. For more information, see Working\\nwith Amazon Elastic Inference on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"deviceName\": {\n \"type\": \"string\"\n },\n \"deviceType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ipcMode\": {\n \"description\": \"The IPC resource namespace to use for the containers in the task. The valid\\nvalues are host, task, or none. If host is specified, then all containers\\nwithin the tasks that specified the host IPC mode on the same container instance\\nshare the same IPC resources with the host Amazon EC2 instance. If task is\\nspecified, all containers within the specified task share the same IPC resources.\\nIf none is specified, then IPC resources within the containers of a task\\nare private and not shared with other containers in a task or on the container\\ninstance. If no value is specified, then the IPC resource namespace sharing\\ndepends on the Docker daemon setting on the container instance. For more\\ninformation, see IPC settings (https://docs.docker.com/engine/reference/run/#ipc-settings---ipc)\\nin the Docker run reference.\\n\\n\\nIf the host IPC mode is used, be aware that there is a heightened risk of\\nundesired IPC namespace expose. For more information, see Docker security\\n(https://docs.docker.com/engine/security/security/).\\n\\n\\nIf you are setting namespaced kernel parameters using systemControls for\\nthe containers in the task, the following will apply to your IPC resource\\nnamespace. For more information, see System Controls (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\n - For tasks that use the host IPC mode, IPC namespace related systemControls\\n are not supported.\\n\\n\\n - For tasks that use the task IPC mode, IPC namespace related systemControls\\n will apply to all containers within a task.\\n\\n\\nThis parameter is not supported for Windows containers or tasks run on Fargate.\",\n \"type\": \"string\"\n },\n \"memory\": {\n \"description\": \"The amount of memory (in MiB) used by the task. It can be expressed as an\\ninteger using MiB (for example ,1024) or as a string using GB (for example,\\n1GB or 1 GB) in a task definition. String values are converted to an integer\\nindicating the MiB when the task definition is registered.\\n\\n\\nTask-level CPU and memory parameters are ignored for Windows containers.\\nWe recommend specifying container-level resources for Windows containers.\\n\\n\\nIf using the EC2 launch type, this field is optional.\\n\\n\\nIf using the Fargate launch type, this field is required and you must use\\none of the following values. This determines your range of supported values\\nfor the cpu parameter.\\n\\n\\nThe CPU units cannot be less than 1 vCPU when you use Windows containers\\non Fargate.\\n\\n\\n - 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB) - Available cpu values: 256 (.25\\n vCPU)\\n\\n\\n - 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB) - Available cpu values:\\n 512 (.5 vCPU)\\n\\n\\n - 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168\\n (7 GB), 8192 (8 GB) - Available cpu values: 1024 (1 vCPU)\\n\\n\\n - Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB) -\\n Available cpu values: 2048 (2 vCPU)\\n\\n\\n - Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) -\\n Available cpu values: 4096 (4 vCPU)\\n\\n\\n - Between 16 GB and 60 GB in 4 GB increments - Available cpu values: 8192\\n (8 vCPU) This option requires Linux platform 1.4.0 or later.\\n\\n\\n - Between 32GB and 120 GB in 8 GB increments - Available cpu values: 16384\\n (16 vCPU) This option requires Linux platform 1.4.0 or later.\",\n \"type\": \"string\"\n },\n \"networkMode\": {\n \"description\": \"The Docker networking mode to use for the containers in the task. The valid\\nvalues are none, bridge, awsvpc, and host. If no network mode is specified,\\nthe default is bridge.\\n\\n\\nFor Amazon ECS tasks on Fargate, the awsvpc network mode is required. For\\nAmazon ECS tasks on Amazon EC2 Linux instances, any network mode can be used.\\nFor Amazon ECS tasks on Amazon EC2 Windows instances, \\u003cdefault\\u003e or awsvpc\\ncan be used. If the network mode is set to none, you cannot specify port\\nmappings in your container definitions, and the tasks containers do not have\\nexternal connectivity. The host and awsvpc network modes offer the highest\\nnetworking performance for containers because they use the EC2 network stack\\ninstead of the virtualized network stack provided by the bridge mode.\\n\\n\\nWith the host and awsvpc network modes, exposed container ports are mapped\\ndirectly to the corresponding host port (for the host network mode) or the\\nattached elastic network interface port (for the awsvpc network mode), so\\nyou cannot take advantage of dynamic host port mappings.\\n\\n\\nWhen using the host network mode, you should not run containers using the\\nroot user (UID 0). It is considered best practice to use a non-root user.\\n\\n\\nIf the network mode is awsvpc, the task is allocated an elastic network interface,\\nand you must specify a NetworkConfiguration value when you create a service\\nor run a task with the task definition. For more information, see Task Networking\\n(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nIf the network mode is host, you cannot run multiple instantiations of the\\nsame task on a single container instance when port mappings are used.\\n\\n\\nFor more information, see Network settings (https://docs.docker.com/engine/reference/run/#network-settings)\\nin the Docker run reference.\",\n \"type\": \"string\"\n },\n \"pidMode\": {\n \"description\": \"The process namespace to use for the containers in the task. The valid values\\nare host or task. On Fargate for Linux containers, the only valid value is\\ntask. For example, monitoring sidecars might need pidMode to access information\\nabout other containers running in the same task.\\n\\n\\nIf host is specified, all containers within the tasks that specified the\\nhost PID mode on the same container instance share the same process namespace\\nwith the host Amazon EC2 instance.\\n\\n\\nIf task is specified, all containers within the specified task share the\\nsame process namespace.\\n\\n\\nIf no value is specified, the default is a private namespace for each container.\\nFor more information, see PID settings (https://docs.docker.com/engine/reference/run/#pid-settings---pid)\\nin the Docker run reference.\\n\\n\\nIf the host PID mode is used, there's a heightened risk of undesired process\\nnamespace exposure. For more information, see Docker security (https://docs.docker.com/engine/security/security/).\\n\\n\\nThis parameter is not supported for Windows containers.\\n\\n\\nThis parameter is only supported for tasks that are hosted on Fargate if\\nthe tasks are using platform version 1.4.0 or later (Linux). This isn't supported\\nfor Windows containers on Fargate.\",\n \"type\": \"string\"\n },\n \"placementConstraints\": {\n \"description\": \"An array of placement constraint objects to use for the task. You can specify\\na maximum of 10 constraints for each task. This limit includes constraints\\nin the task definition and those specified at runtime.\",\n \"items\": {\n \"description\": \"The constraint on task placement in the task definition. For more information,\\nsee Task placement constraints (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html)\\nin the Amazon Elastic Container Service Developer Guide.\\n\\n\\nTask placement constraints aren't supported for tasks run on Fargate.\",\n \"properties\": {\n \"expression\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"proxyConfiguration\": {\n \"description\": \"The configuration details for the App Mesh proxy.\\n\\n\\nFor tasks hosted on Amazon EC2 instances, the container instances require\\nat least version 1.26.0 of the container agent and at least version 1.26.0-1\\nof the ecs-init package to use a proxy configuration. If your container instances\\nare launched from the Amazon ECS-optimized AMI version 20190301 or later,\\nthen they contain the required versions of the container agent and ecs-init.\\nFor more information, see Amazon ECS-optimized AMI versions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-ami-versions.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"properties\": {\n \"items\": {\n \"description\": \"A key-value pair object.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requiresCompatibilities\": {\n \"description\": \"The task launch type that Amazon ECS validates the task definition against.\\nA client exception is returned if the task definition doesn't validate against\\nthe compatibilities specified. If no value is specified, the parameter is\\nomitted from the response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"runtimePlatform\": {\n \"description\": \"The operating system that your tasks definitions run on. A platform family\\nis specified only for tasks using the Fargate launch type.\\n\\n\\nWhen you specify a task definition in a service, this value must match the\\nruntimePlatform value of the service.\",\n \"properties\": {\n \"cpuArchitecture\": {\n \"type\": \"string\"\n },\n \"operatingSystemFamily\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"The metadata that you apply to the task definition to help you categorize\\nand organize them. Each tag consists of a key and an optional value. You\\ndefine both of them.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"items\": {\n \"description\": \"The metadata that you apply to a resource to help you categorize and organize\\nthem. Each tag consists of a key and an optional value. You define them.\\n\\n\\nThe following basic restrictions apply to tags:\\n\\n\\n - Maximum number of tags per resource - 50\\n\\n\\n - For each resource, each tag key must be unique, and each tag key can\\n have only one value.\\n\\n\\n - Maximum key length - 128 Unicode characters in UTF-8\\n\\n\\n - Maximum value length - 256 Unicode characters in UTF-8\\n\\n\\n - If your tagging schema is used across multiple services and resources,\\n remember that other services may have restrictions on allowed characters.\\n Generally allowed characters are: letters, numbers, and spaces representable\\n in UTF-8, and the following characters: + - = . _ : / @.\\n\\n\\n - Tag keys and values are case-sensitive.\\n\\n\\n - Do not use aws:, AWS:, or any upper or lowercase combination of such\\n as a prefix for either keys or values as it is reserved for Amazon Web\\n Services use. You cannot edit or delete tag keys or values with this prefix.\\n Tags with this prefix do not count against your tags per resource limit.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"taskRoleARN\": {\n \"description\": \"The short name or full Amazon Resource Name (ARN) of the IAM role that containers\\nin this task can assume. All containers in this task are granted the permissions\\nthat are specified in this role. For more information, see IAM Roles for\\nTasks (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"type\": \"string\"\n },\n \"taskRoleRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"volumes\": {\n \"description\": \"A list of volume definitions in JSON format that containers in your task\\nmight use.\",\n \"items\": {\n \"description\": \"The data volume configuration for tasks launched using this task definition.\\nSpecifying a volume configuration in a task definition is optional. The volume\\nconfiguration may contain multiple volumes but only one volume configured\\nat launch is supported. Each volume defined in the volume configuration may\\nonly specify a name and one of either configuredAtLaunch, dockerVolumeConfiguration,\\nefsVolumeConfiguration, fsxWindowsFileServerVolumeConfiguration, or host.\\nIf an empty volume configuration is specified, by default Amazon ECS uses\\na host volume. For more information, see Using data volumes in tasks (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_data_volumes.html).\",\n \"properties\": {\n \"configuredAtLaunch\": {\n \"type\": \"boolean\"\n },\n \"dockerVolumeConfiguration\": {\n \"description\": \"This parameter is specified when you're using Docker volumes. Docker volumes\\nare only supported when you're using the EC2 launch type. Windows containers\\nonly support the use of the local driver. To use bind mounts, specify a host\\ninstead.\",\n \"properties\": {\n \"autoprovision\": {\n \"type\": \"boolean\"\n },\n \"driver\": {\n \"type\": \"string\"\n },\n \"driverOpts\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scope\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"efsVolumeConfiguration\": {\n \"description\": \"This parameter is specified when you're using an Amazon Elastic File System\\nfile system for task storage. For more information, see Amazon EFS volumes\\n(https://docs.aws.amazon.com/AmazonECS/latest/developerguide/efs-volumes.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"authorizationConfig\": {\n \"description\": \"The authorization configuration details for the Amazon EFS file system.\",\n \"properties\": {\n \"accessPointID\": {\n \"type\": \"string\"\n },\n \"iam\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fileSystemID\": {\n \"type\": \"string\"\n },\n \"rootDirectory\": {\n \"type\": \"string\"\n },\n \"transitEncryption\": {\n \"type\": \"string\"\n },\n \"transitEncryptionPort\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"fsxWindowsFileServerVolumeConfiguration\": {\n \"description\": \"This parameter is specified when you're using Amazon FSx for Windows File\\nServer (https://docs.aws.amazon.com/fsx/latest/WindowsGuide/what-is.html)\\nfile system for task storage.\\n\\n\\nFor more information and the input format, see Amazon FSx for Windows File\\nServer volumes (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/wfsx-volumes.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"authorizationConfig\": {\n \"description\": \"The authorization configuration details for Amazon FSx for Windows File Server\\nfile system. See FSxWindowsFileServerVolumeConfiguration (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_FSxWindowsFileServerVolumeConfiguration.html)\\nin the Amazon ECS API Reference.\\n\\n\\nFor more information and the input format, see Amazon FSx for Windows File\\nServer Volumes (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/wfsx-volumes.html)\\nin the Amazon Elastic Container Service Developer Guide.\",\n \"properties\": {\n \"credentialsParameter\": {\n \"type\": \"string\"\n },\n \"domain\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fileSystemID\": {\n \"type\": \"string\"\n },\n \"rootDirectory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"host\": {\n \"description\": \"Details on a container instance bind mount host volume.\",\n \"properties\": {\n \"sourcePath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containerDefinitions\",\n \"family\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Task Definition\",\n \"type\": \"object\"\n}", + "version": "ecs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Task Definition", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm" + }, + "model": { + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/ecs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"64px\" height=\"64px\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/model.json b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/model.json new file mode 100644 index 00000000000..0ceebdefe96 --- /dev/null +++ b/server/meshmodel/aws-ecs-controller/v1.0.0/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Provisioning" + }, + "displayName": "AWS Elastic Container Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 64 64\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/48/Arch_Amazon-Elastic-Container-Service_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/48/Compute\" fill=\"#ED7100\"\u003e\n \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"64\" height=\"64\"\u003e\u003c/rect\u003e\n \u003c/g\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M50,36.3822466 L44,33.3822885 L44,25.0004058 C44,24.6374109 43.803,24.3024156 43.485,24.1264181 L35,19.412484 L35,12.7495773 L50,21.5724538 L50,36.3822466 Z M51.507,20.1384739 L34.507,10.1386138 C34.199,9.95761637 33.815,9.95461641 33.504,10.1326139 C33.192,10.3106114 33,10.6416068 33,11.0006018 L33,20.0004758 C33,20.3634707 33.197,20.6984661 33.515,20.8744636 L42,25.5883976 L42,34.0002799 C42,34.3792746 42.214,34.7252697 42.553,34.8952674 L50.553,38.8952114 C50.694,38.9652104 50.847,39.0002099 51,39.0002099 C51.183,39.0002099 51.365,38.9502106 51.525,38.851212 C51.82,38.6682146 52,38.3472191 52,38.0002239 L52,21.0004618 C52,20.6464668 51.812,20.3184714 51.507,20.1384739 L51.507,20.1384739 Z M32,51.8280304 L15,41.4391758 L15,21.5544541 L29,12.8045765 L29,19.4464836 L21.47,24.1524177 C21.178,24.3354152 21,24.6554107 21,25.0004058 L21,38.0002239 C21,38.351219 21.185,38.6772144 21.485,38.8572119 L31.485,44.857128 C31.789,45.0401254 32.167,45.0481253 32.479,44.8781277 L42.988,39.1462079 L48.035,42.0291675 L32,51.8280304 Z M50.496,41.1321801 L43.496,37.1322361 C43.194,36.9592385 42.825,36.9562385 42.521,37.1222362 L32.023,42.8481561 L23,37.4342318 L23,25.5543981 L30.53,20.848464 C30.822,20.6654665 31,20.345471 31,20.0004758 L31,11.0006018 C31,10.6366069 30.803,10.3026115 30.484,10.125614 C30.168,9.9486165 29.778,9.95961634 29.47,10.1526136 L13.47,20.1524737 C13.178,20.3354711 13,20.6554667 13,21.0004618 L13,42.0001679 C13,42.3481631 13.182,42.6711585 13.479,42.854156 L31.479,53.854002 C31.639,53.9510007 31.819,54 32,54 C32.181,54 32.361,53.9510007 32.521,53.854002 L50.521,42.854156 C50.823,42.6691586 51.005,42.3391632 51.0001004,41.9851681 C50.995,41.6321731 50.803,41.3071776 50.496,41.1321801 L50.496,41.1321801 Z\" id=\"Amazon-Elastic-Container-Service_Icon_48_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-ecs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Automation \u0026 Configuration", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AccessPoint.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AccessPoint.json new file mode 100644 index 00000000000..a6b42cc10ae --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AccessPoint.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AccessPoint", + "schema": "{\n \"description\": \"AccessPoint is the Schema for the AccessPoints API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AccessPointSpec defines the desired state of AccessPoint.\",\n \"properties\": {\n \"fileSystemID\": {\n \"description\": \"The ID of the EFS file system that the access point provides access to.\",\n \"type\": \"string\"\n },\n \"fileSystemRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"posixUser\": {\n \"description\": \"The operating system user and group applied to all file system requests made\\nusing the access point.\",\n \"properties\": {\n \"gid\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"secondaryGIDs\": {\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"uid\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rootDirectory\": {\n \"description\": \"Specifies the directory on the EFS file system that the access point exposes\\nas the root directory of your file system to NFS clients using the access\\npoint. The clients using the access point can only access the root directory\\nand below. If the RootDirectory \\u003e Path specified does not exist, Amazon EFS\\ncreates it and applies the CreationInfo settings when a client connects to\\nan access point. When specifying a RootDirectory, you must provide the Path,\\nand the CreationInfo.\\n\\n\\nAmazon EFS creates a root directory only if you have provided the CreationInfo:\\nOwnUid, OwnGID, and permissions for the directory. If you do not provide\\nthis information, Amazon EFS does not create the root directory. If the root\\ndirectory does not exist, attempts to mount using the access point will fail.\",\n \"properties\": {\n \"creationInfo\": {\n \"description\": \"Required if the RootDirectory \\u003e Path specified does not exist. Specifies\\nthe POSIX IDs and permissions to apply to the access point's RootDirectory\\n\\u003e Path. If the access point root directory does not exist, EFS creates it\\nwith these settings when a client connects to the access point. When specifying\\nCreationInfo, you must include values for all properties.\\n\\n\\nAmazon EFS creates a root directory only if you have provided the CreationInfo:\\nOwnUid, OwnGID, and permissions for the directory. If you do not provide\\nthis information, Amazon EFS does not create the root directory. If the root\\ndirectory does not exist, attempts to mount using the access point will fail.\\n\\n\\nIf you do not provide CreationInfo and the specified RootDirectory does not\\nexist, attempts to mount the file system using the access point will fail.\",\n \"properties\": {\n \"ownerGID\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"ownerUID\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"permissions\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Creates tags associated with the access point. Each tag is a key-value pair,\\neach key must be unique. For more information, see Tagging Amazon Web Services\\nresources (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html)\\nin the Amazon Web Services General Reference Guide.\",\n \"items\": {\n \"description\": \"A tag is a key-value pair. Allowed characters are letters, white space, and\\nnumbers that can be represented in UTF-8, and the following characters:+\\n- = . _ : /.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Access Point\",\n \"type\": \"object\"\n}", + "version": "efs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Access Point", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..2c87ea5b311 --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..d1d282744bf --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FileSystem.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FileSystem.json new file mode 100644 index 00000000000..db946a7cba1 --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/FileSystem.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FileSystem", + "schema": "{\n \"description\": \"FileSystem is the Schema for the FileSystems API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FileSystemSpec defines the desired state of FileSystem.\",\n \"properties\": {\n \"availabilityZoneName\": {\n \"description\": \"Used to create a One Zone file system. It specifies the Amazon Web Services\\nAvailability Zone in which to create the file system. Use the format us-east-1a\\nto specify the Availability Zone. For more information about One Zone file\\nsystems, see Using EFS storage classes (https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html)\\nin the Amazon EFS User Guide.\\n\\n\\nOne Zone file systems are not available in all Availability Zones in Amazon\\nWeb Services Regions where Amazon EFS is available.\",\n \"type\": \"string\"\n },\n \"backup\": {\n \"description\": \"Specifies whether automatic backups are enabled on the file system that you\\nare creating. Set the value to true to enable automatic backups. If you are\\ncreating a One Zone file system, automatic backups are enabled by default.\\nFor more information, see Automatic backups (https://docs.aws.amazon.com/efs/latest/ug/awsbackup.html#automatic-backups)\\nin the Amazon EFS User Guide.\\n\\n\\nDefault is false. However, if you specify an AvailabilityZoneName, the default\\nis true.\\n\\n\\nBackup is not available in all Amazon Web Services Regions where Amazon EFS\\nis available.\",\n \"type\": \"boolean\"\n },\n \"backupPolicy\": {\n \"description\": \"The backup policy included in the PutBackupPolicy request.\",\n \"properties\": {\n \"status\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"encrypted\": {\n \"description\": \"A Boolean value that, if true, creates an encrypted file system. When creating\\nan encrypted file system, you have the option of specifying an existing Key\\nManagement Service key (KMS key). If you don't specify a KMS key, then the\\ndefault KMS key for Amazon EFS, /aws/elasticfilesystem, is used to protect\\nthe encrypted file system.\",\n \"type\": \"boolean\"\n },\n \"fileSystemProtection\": {\n \"properties\": {\n \"replicationOverwriteProtection\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kmsKeyID\": {\n \"description\": \"The ID of the KMS key that you want to use to protect the encrypted file\\nsystem. This parameter is required only if you want to use a non-default\\nKMS key. If this parameter is not specified, the default KMS key for Amazon\\nEFS is used. You can specify a KMS key ID using the following formats:\\n\\n\\n - Key ID - A unique identifier of the key, for example 1234abcd-12ab-34cd-56ef-1234567890ab.\\n\\n\\n - ARN - An Amazon Resource Name (ARN) for the key, for example arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab.\\n\\n\\n - Key alias - A previously created display name for a key, for example\\n alias/projectKey1.\\n\\n\\n - Key alias ARN - An ARN for a key alias, for example arn:aws:kms:us-west-2:444455556666:alias/projectKey1.\\n\\n\\nIf you use KmsKeyId, you must set the CreateFileSystemRequest$Encrypted parameter\\nto true.\\n\\n\\nEFS accepts only symmetric KMS keys. You cannot use asymmetric KMS keys with\\nAmazon EFS file systems.\",\n \"type\": \"string\"\n },\n \"kmsKeyRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"lifecyclePolicies\": {\n \"description\": \"An array of LifecyclePolicy objects that define the file system's LifecycleConfiguration\\nobject. A LifecycleConfiguration object informs EFS Lifecycle management\\nof the following:\\n\\n\\n - TransitionToIA – When to move files in the file system from primary\\n storage (Standard storage class) into the Infrequent Access (IA) storage.\\n\\n\\n - TransitionToArchive – When to move files in the file system from their\\n current storage class (either IA or Standard storage) into the Archive\\n storage. File systems cannot transition into Archive storage before transitioning\\n into IA storage. Therefore, TransitionToArchive must either not be set\\n or must be later than TransitionToIA. The Archive storage class is available\\n only for file systems that use the Elastic Throughput mode and the General\\n Purpose Performance mode.\\n\\n\\n - TransitionToPrimaryStorageClass – Whether to move files in the file\\n system back to primary storage (Standard storage class) after they are\\n accessed in IA or Archive storage.\\n\\n\\nWhen using the put-lifecycle-configuration CLI command or the PutLifecycleConfiguration\\nAPI action, Amazon EFS requires that each LifecyclePolicy object have only\\na single transition. This means that in a request body, LifecyclePolicies\\nmust be structured as an array of LifecyclePolicy objects, one object for\\neach storage transition. See the example requests in the following section\\nfor more information.\",\n \"items\": {\n \"description\": \"Describes a policy used by Lifecycle management that specifies when to transition\\nfiles into and out of storage classes. For more information, see Managing\\nfile system storage (https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html).\\n\\n\\nWhen using the put-lifecycle-configuration CLI command or the PutLifecycleConfiguration\\nAPI action, Amazon EFS requires that each LifecyclePolicy object have only\\na single transition. This means that in a request body, LifecyclePolicies\\nmust be structured as an array of LifecyclePolicy objects, one object for\\neach transition. For more information, see the request examples in PutLifecycleConfiguration.\",\n \"properties\": {\n \"transitionToArchive\": {\n \"type\": \"string\"\n },\n \"transitionToIA\": {\n \"type\": \"string\"\n },\n \"transitionToPrimaryStorageClass\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"performanceMode\": {\n \"description\": \"The Performance mode of the file system. We recommend generalPurpose performance\\nmode for all file systems. File systems using the maxIO performance mode\\ncan scale to higher levels of aggregate throughput and operations per second\\nwith a tradeoff of slightly higher latencies for most file operations. The\\nperformance mode can't be changed after the file system has been created.\\nThe maxIO mode is not supported on One Zone file systems.\\n\\n\\nDue to the higher per-operation latencies with Max I/O, we recommend using\\nGeneral Purpose performance mode for all file systems.\\n\\n\\nDefault is generalPurpose.\",\n \"type\": \"string\"\n },\n \"policy\": {\n \"description\": \"The FileSystemPolicy that you're creating. Accepts a JSON formatted policy\\ndefinition. EFS file system policies have a 20,000 character limit. To find\\nout more about the elements that make up a file system policy, see EFS Resource-based\\nPolicies (https://docs.aws.amazon.com/efs/latest/ug/access-control-overview.html#access-control-manage-access-intro-resource-policies).\",\n \"type\": \"string\"\n },\n \"provisionedThroughputInMiBps\": {\n \"description\": \"The throughput, measured in mebibytes per second (MiBps), that you want to\\nprovision for a file system that you're creating. Required if ThroughputMode\\nis set to provisioned. Valid values are 1-3414 MiBps, with the upper limit\\ndepending on Region. To increase this limit, contact Amazon Web Services\\nSupport. For more information, see Amazon EFS quotas that you can increase\\n(https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits) in the\\nAmazon EFS User Guide.\",\n \"type\": \"number\"\n },\n \"tags\": {\n \"description\": \"Use to create one or more tags associated with the file system. Each tag\\nis a user-defined key-value pair. Name your file system on creation by including\\na \\\"Key\\\":\\\"Name\\\",\\\"Value\\\":\\\"{value}\\\" key-value pair. Each key must be unique.\\nFor more information, see Tagging Amazon Web Services resources (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html)\\nin the Amazon Web Services General Reference Guide.\",\n \"items\": {\n \"description\": \"A tag is a key-value pair. Allowed characters are letters, white space, and\\nnumbers that can be represented in UTF-8, and the following characters:+\\n- = . _ : /.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"throughputMode\": {\n \"description\": \"Specifies the throughput mode for the file system. The mode can be bursting,\\nprovisioned, or elastic. If you set ThroughputMode to provisioned, you must\\nalso set a value for ProvisionedThroughputInMibps. After you create the file\\nsystem, you can decrease your file system's Provisioned throughput or change\\nbetween the throughput modes, with certain time restrictions. For more information,\\nsee Specifying throughput with provisioned mode (https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput)\\nin the Amazon EFS User Guide.\\n\\n\\nDefault is bursting.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"File System\",\n \"type\": \"object\"\n}", + "version": "efs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "File System", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/MountTarget.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/MountTarget.json new file mode 100644 index 00000000000..c215d9056c2 --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/components/MountTarget.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MountTarget", + "schema": "{\n \"description\": \"MountTarget is the Schema for the MountTargets API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MountTargetSpec defines the desired state of MountTarget.\",\n \"properties\": {\n \"fileSystemID\": {\n \"description\": \"The ID of the file system for which to create the mount target.\",\n \"type\": \"string\"\n },\n \"fileSystemRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ipAddress\": {\n \"description\": \"Valid IPv4 address within the address range of the specified subnet.\",\n \"type\": \"string\"\n },\n \"securityGroupRefs\": {\n \"items\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"securityGroups\": {\n \"description\": \"Up to five VPC security group IDs, of the form sg-xxxxxxxx. These must be\\nfor the same VPC as subnet specified.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subnetID\": {\n \"description\": \"The ID of the subnet to add the mount target in. For One Zone file systems,\\nuse the subnet that is associated with the file system's Availability Zone.\",\n \"type\": \"string\"\n },\n \"subnetRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mount Target\",\n \"type\": \"object\"\n}", + "version": "efs.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mount Target", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/efs-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#ED7100", + "shape": "rectangle", + "svgColor": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_23296_3391)\"\u003e\n\u003cpath d=\"M40 0H0V40H40V0Z\" fill=\"#ED7100\" fill-opacity=\"0.12\"/\u003e\n\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.403 16.1434V19.4551L22.273 16.1434H23.716L20.465 20.1487L23.882 24.3702H22.459L19.403 20.5653V24.3565H18.117V16.1434H19.403ZM32 24.2494L28 21.8925V15.8251C28 15.6355 27.888 15.4626 27.713 15.381L22 12.7363V8.28493L32 13.1823V24.2494ZM32.722 12.4386L21.722 7.05198C21.567 6.97535 21.383 6.98419 21.237 7.07359C21.09 7.16299 21 7.32116 21 7.49112V13.0477C21 13.2373 21.111 13.4112 21.287 13.4918L27 16.1365V22.1706C27 22.3435 27.091 22.5026 27.243 22.5911L32.243 25.5383C32.322 25.5855 32.411 25.6091 32.5 25.6091C32.585 25.6091 32.67 25.5875 32.746 25.5452C32.903 25.4578 33 25.2947 33 25.1179V12.8778C33 12.6921 32.892 12.5212 32.722 12.4386ZM19.995 32.9517L9 27.3165V13.1686L18 8.32029V12.7619L13.254 15.3977C13.096 15.4851 13 15.6482 13 15.8251V24.6669C13 24.8457 13.099 25.0108 13.258 25.0972L19.758 28.6124C19.909 28.6939 20.091 28.6939 20.24 28.6133L26.49 25.2416L30.036 27.572L19.995 32.9517ZM26.794 24.2592C26.638 24.157 26.439 24.1492 26.275 24.2366L20 27.6221L14 24.3771V16.1119L18.746 13.4751C18.903 13.3886 19 13.2246 19 13.0477V7.49112C19 7.31723 18.907 7.1571 18.755 7.06868C18.603 6.98026 18.415 6.97731 18.259 7.05984L8.259 12.4475C8.099 12.5339 8 12.699 8 12.8778V27.6142C8 27.7979 8.103 27.9649 8.268 28.0504L19.768 33.945C19.84 33.9813 19.921 34 20 34C20.082 34 20.165 33.9804 20.239 33.9401L31.239 28.0455C31.392 27.963 31.491 27.8087 31.499 27.6368C31.507 27.4649 31.424 27.3018 31.278 27.2065L26.794 24.2592Z\" fill=\"#ED7100\"/\u003e\n\u003c/g\u003e\n\u003crect x=\"0.5\" y=\"0.5\" width=\"39\" height=\"39\" stroke=\"#ED7100\"/\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_23296_3391\"\u003e\n\u003crect width=\"40\" height=\"40\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e\n", + "svgWhite": "\u003csvg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M19.403,16.1433741 L19.403,19.4551416 L22.273,16.1433741 L23.716,16.1433741 L20.465,20.1487363 L23.882,24.3702329 L22.459,24.3702329 L19.403,20.5652861 L19.403,24.3564789 L18.117,24.3564789 L18.117,16.1433741 L19.403,16.1433741 Z M32,24.2493941 L28,21.8925474 L28,15.8250672 C28,15.6354584 27.888,15.4625509 27.713,15.3810093 L22,12.736311 L22,8.28492611 L32,13.1823337 L32,24.2493941 Z M32.722,12.4386351 L21.722,7.05197797 C21.567,6.97534852 21.383,6.98419038 21.237,7.0735914 C21.09,7.16299242 21,7.32116346 21,7.49112364 L21,13.0477409 C21,13.2373497 21.111,13.4112396 21.287,13.4917988 L27,16.1364971 L27,22.1705748 C27,22.3434823 27.091,22.5026357 27.243,22.5910543 L32.243,25.5383407 C32.322,25.5854973 32.411,25.6090756 32.5,25.6090756 C32.585,25.6090756 32.67,25.5874622 32.746,25.5452177 C32.903,25.4577816 33,25.2946984 33,25.1178612 L33,12.8777808 C33,12.6921017 32.892,12.5211591 32.722,12.4386351 L32.722,12.4386351 Z M19.995,32.9517485 L9,27.3165369 L9,13.1685797 L18,8.32029355 L18,12.7618542 L13.254,15.3977106 C13.096,15.4851468 13,15.64823 13,15.8250672 L13,24.6669264 C13,24.8457284 13.099,25.0107765 13.258,25.0972302 L19.758,28.6123605 C19.909,28.693902 20.091,28.693902 20.24,28.6133429 L26.49,25.2416472 L30.036,27.5719684 L19.995,32.9517485 Z M26.794,24.2592184 C26.638,24.1570458 26.439,24.1491864 26.275,24.2366226 L20,27.6220722 L14,24.3771099 L14,16.1119364 L18.746,13.4750975 C18.903,13.3886437 19,13.2245781 19,13.0477409 L19,7.49112364 C19,7.31723374 18.907,7.15709785 18.755,7.06867926 C18.603,6.98026067 18.415,6.97731338 18.259,7.0598374 L8.259,12.4474769 C8.099,12.5339307 8,12.6989787 8,12.8777808 L8,27.6142128 C8,27.797927 8.103,27.9649399 8.268,28.0504112 L19.768,33.944984 C19.84,33.9813339 19.921,34 20,34 C20.082,34 20.165,33.9803514 20.239,33.9400718 L31.239,28.045499 C31.392,27.962975 31.491,27.8087337 31.499,27.6368087 C31.507,27.4648836 31.424,27.3018004 31.278,27.2065048 L26.794,24.2592184 Z\" id=\"Amazon-Elastic-Kubernetes-Service_Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/model.json b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/model.json new file mode 100644 index 00000000000..34d0ad0072d --- /dev/null +++ b/server/meshmodel/aws-efs-controller/v1.0.0/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "AWS Elastic File System", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#ED7100", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 48\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\"\u003e\n \u003ctitle xmlns=\"http://www.w3.org/2000/svg\"\u003eIcon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\u003c/title\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M37.2366623,11.621 L42.2336623,11.621 L42.2336623,6.624 L37.2366623,6.624 L37.2366623,11.621 Z M36.1116623,13.595 L36.1116623,15.245 L38.1116623,15.245 L38.1116623,13.621 L38.7356623,13.621 L38.7356623,15.245 L40.7356623,15.245 L40.7356623,13.621 L41.3596623,13.621 L41.3596623,15.245 L43.3596623,15.245 L43.3596623,13.595 C43.8066623,13.537 44.1496623,13.193 44.2076623,12.746 L45.8576623,12.746 L45.8576623,10.746 L44.2336623,10.746 L44.2336623,10.123 L45.8576623,10.123 L45.8576623,8.123 L44.2336623,8.123 L44.2336623,7.499 L45.8576623,7.499 L45.8576623,5.499 L44.2076623,5.499 C44.1496623,5.051 43.8066623,4.708 43.3596623,4.649 L43.3596623,3 L41.3596623,3 L41.3596623,4.624 L40.7356623,4.624 L40.7356623,3 L38.7356623,3 L38.7356623,4.624 L38.1116623,4.624 L38.1116623,3 L36.1116623,3 L36.1116623,4.649 C35.6626623,4.708 35.3206623,5.05 35.2616623,5.499 L33.6126623,5.499 L33.6126623,7.499 L35.2366623,7.499 L35.2366623,8.123 L33.6126623,8.123 L33.6126623,10.123 L35.2366623,10.123 L35.2366623,10.746 L33.6126623,10.746 L33.6126623,12.746 L35.2616623,12.746 C35.3206623,13.194 35.6626623,13.537 36.1116623,13.595 L36.1116623,13.595 Z M22.3676623,11.621 L27.3646623,11.621 L27.3646623,6.624 L22.3676623,6.624 L22.3676623,11.621 Z M21.2426623,13.595 L21.2426623,15.245 L23.2426623,15.245 L23.2426623,13.621 L23.8666623,13.621 L23.8666623,15.245 L25.8666623,15.245 L25.8666623,13.621 L26.4906623,13.621 L26.4906623,15.245 L28.4906623,15.245 L28.4906623,13.595 C28.9376623,13.537 29.2806623,13.193 29.3386623,12.746 L30.9886623,12.746 L30.9886623,10.746 L29.3646623,10.746 L29.3646623,10.123 L30.9886623,10.123 L30.9886623,8.123 L29.3646623,8.123 L29.3646623,7.499 L30.9886623,7.499 L30.9886623,5.499 L29.3386623,5.499 C29.2806623,5.051 28.9376623,4.708 28.4906623,4.649 L28.4906623,3 L26.4906623,3 L26.4906623,4.624 L25.8666623,4.624 L25.8666623,3 L23.8666623,3 L23.8666623,4.624 L23.2426623,4.624 L23.2426623,3 L21.2426623,3 L21.2426623,4.649 C20.7936623,4.708 20.4506623,5.05 20.3926623,5.499 L18.7426623,5.499 L18.7426623,7.499 L20.3676623,7.499 L20.3676623,8.123 L18.7426623,8.123 L18.7426623,10.123 L20.3676623,10.123 L20.3676623,10.746 L18.7426623,10.746 L18.7426623,12.746 L20.3926623,12.746 C20.4506623,13.194 20.7936623,13.537 21.2426623,13.595 L21.2426623,13.595 Z M7.49866234,11.621 L12.4956623,11.621 L12.4956623,6.624 L7.49866234,6.624 L7.49866234,11.621 Z M6.37266234,13.595 L6.37266234,15.245 L8.37266234,15.245 L8.37266234,13.621 L8.99666234,13.621 L8.99666234,15.245 L10.9966623,15.245 L10.9966623,13.621 L11.6206623,13.621 L11.6206623,15.245 L13.6206623,15.245 L13.6206623,13.595 C14.0696623,13.537 14.4116623,13.194 14.4706623,12.746 L16.1196623,12.746 L16.1196623,10.746 L14.4956623,10.746 L14.4956623,10.123 L16.1196623,10.123 L16.1196623,8.123 L14.4956623,8.123 L14.4956623,7.499 L16.1196623,7.499 L16.1196623,5.499 L14.4706623,5.499 C14.4116623,5.05 14.0696623,4.708 13.6206623,4.649 L13.6206623,3 L11.6206623,3 L11.6206623,4.624 L10.9966623,4.624 L10.9966623,3 L8.99666234,3 L8.99666234,4.624 L8.37266234,4.624 L8.37266234,3 L6.37266234,3 L6.37266234,4.649 C5.92566234,4.708 5.58166234,5.051 5.52466234,5.499 L3.87466234,5.499 L3.87466234,7.499 L5.49866234,7.499 L5.49866234,8.123 L3.87466234,8.123 L3.87466234,10.123 L5.49866234,10.123 L5.49866234,10.746 L3.87466234,10.746 L3.87466234,12.746 L5.52466234,12.746 C5.58166234,13.193 5.92566234,13.537 6.37266234,13.595 L6.37266234,13.595 Z M37.3346623,28.477 L43.4426623,42.23 L10.6516623,42.23 L4.53866234,28.477 L37.3346623,28.477 Z M6.87666234,24.979 L39.8116623,24.979 L41.7386623,33.463 L38.8996623,27.071 C38.7396623,26.709 38.3806623,26.477 37.9856623,26.477 L7.21766234,26.477 L6.87666234,24.979 Z M10.9966623,22.361 C10.9966623,21.828 11.4186623,21.393 11.9386623,21.393 L31.4436623,21.393 C31.9956623,21.393 32.4436623,20.946 32.4436623,20.393 L32.4436623,18.25 C32.4436623,18.092 32.5546623,17.973 32.7026623,17.973 L36.9456623,17.973 C37.0956623,17.973 37.2126623,18.094 37.2126623,18.25 L37.2126623,20.393 C37.2126623,20.946 37.6596623,21.393 38.2126623,21.393 L43.0406623,21.393 C43.5606623,21.393 43.9826623,21.828 43.9826623,22.361 L43.9826623,34.311 L41.5846623,23.757 C41.4816623,23.302 41.0756623,22.979 40.6096623,22.979 L10.9966623,22.979 L10.9966623,22.361 Z M43.0406623,19.393 L39.2126623,19.393 L39.2126623,18.25 C39.2126623,16.995 38.1956623,15.973 36.9456623,15.973 L32.7026623,15.973 C31.4566623,15.973 30.4436623,16.995 30.4436623,18.25 L30.4436623,19.393 L11.9386623,19.393 C10.3166623,19.393 8.99666234,20.724 8.99666234,22.361 L8.99666234,22.979 L5.62366234,22.979 C5.31966234,22.979 5.03266234,23.118 4.84266234,23.355 C4.65266234,23.593 4.58066234,23.904 4.64966234,24.201 L5.16666234,26.477 L2.99966234,26.477 C2.66066234,26.477 2.34566234,26.648 2.16066234,26.932 C1.97766234,27.216 1.94866234,27.574 2.08566234,27.883 L9.07266234,43.604 C9.22066234,43.97 9.57666234,44.23 9.99666234,44.23 L44.9826623,44.23 C45.5346623,44.23 45.9826623,43.783 45.9826623,43.23 L45.9826623,22.361 C45.9826623,20.724 44.6626623,19.393 43.0406623,19.393 L43.0406623,19.393 Z\" id=\"AWS-Amazon-Elastic-File-System_File-system_Resource-Icon_light-bg\" fill=\"#7AA116\"\u003e\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-efs-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..903ad18e426 --- /dev/null +++ b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "AWS OpenSearch Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#E7157B", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-opensearchservice-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Logging", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#E7157B", + "shape": "rectangle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/Domain.json b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/Domain.json new file mode 100644 index 00000000000..a94d569d7c2 --- /dev/null +++ b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/Domain.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Domain", + "schema": "{\n \"description\": \"Domain is the Schema for the Domains API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DomainSpec defines the desired state of Domain.\",\n \"properties\": {\n \"accessPolicies\": {\n \"description\": \"Identity and Access Management (IAM) policy document specifying the access\\npolicies for the new domain.\",\n \"type\": \"string\"\n },\n \"advancedOptions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Key-value pairs to specify advanced configuration options. The following\\nkey-value pairs are supported:\\n\\n\\n - \\\"rest.action.multi.allow_explicit_index\\\": \\\"true\\\" | \\\"false\\\" - Note the\\n use of a string rather than a boolean. Specifies whether explicit references\\n to indexes are allowed inside the body of HTTP requests. If you want to\\n configure access policies for domain sub-resources, such as specific indexes\\n and domain APIs, you must disable this property. Default is true.\\n\\n\\n - \\\"indices.fielddata.cache.size\\\": \\\"80\\\" - Note the use of a string rather\\n than a boolean. Specifies the percentage of heap space allocated to field\\n data. Default is unbounded.\\n\\n\\n - \\\"indices.query.bool.max_clause_count\\\": \\\"1024\\\" - Note the use of a string\\n rather than a boolean. Specifies the maximum number of clauses allowed\\n in a Lucene boolean query. Default is 1,024. Queries with more than the\\n permitted number of clauses result in a TooManyClauses error.\\n\\n\\n - \\\"override_main_response_version\\\": \\\"true\\\" | \\\"false\\\" - Note the use of\\n a string rather than a boolean. Specifies whether the domain reports its\\n version as 7.10 to allow Elasticsearch OSS clients and plugins to continue\\n working with it. Default is false when creating a domain and true when\\n upgrading a domain.\\n\\n\\nFor more information, see Advanced cluster parameters (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options).\",\n \"type\": \"object\"\n },\n \"advancedSecurityOptions\": {\n \"description\": \"Options for fine-grained access control.\",\n \"properties\": {\n \"anonymousAuthEnabled\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"internalUserDatabaseEnabled\": {\n \"type\": \"boolean\"\n },\n \"jwtOptions\": {\n \"description\": \"The JWT authentication and authorization configuration for an Amazon OpenSearch\\nService domain.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"publicKey\": {\n \"type\": \"string\"\n },\n \"rolesKey\": {\n \"type\": \"string\"\n },\n \"subjectKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"masterUserOptions\": {\n \"description\": \"Credentials for the master user for a domain.\",\n \"properties\": {\n \"masterUserARN\": {\n \"description\": \"The Amazon Resource Name (ARN) of the domain. See Identifiers for IAM Entities\\n(https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html) in Using Amazon\\nWeb Services Identity and Access Management for more information.\",\n \"type\": \"string\"\n },\n \"masterUserName\": {\n \"type\": \"string\"\n },\n \"masterUserPassword\": {\n \"description\": \"SecretKeyReference combines a k8s corev1.SecretReference with a\\nspecific key within the referred-to Secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key is the key within the secret\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name is unique within a namespace to reference a secret resource.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"namespace defines the space within which the secret name must be unique.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"sAMLOptions\": {\n \"description\": \"The SAML authentication configuration for an Amazon OpenSearch Service domain.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"idp\": {\n \"description\": \"The SAML identity povider information.\",\n \"properties\": {\n \"entityID\": {\n \"type\": \"string\"\n },\n \"metadataContent\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"masterBackendRole\": {\n \"type\": \"string\"\n },\n \"masterUserName\": {\n \"type\": \"string\"\n },\n \"rolesKey\": {\n \"type\": \"string\"\n },\n \"sessionTimeoutMinutes\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"subjectKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"aimlOptions\": {\n \"description\": \"Options for all machine learning features for the specified domain.\",\n \"properties\": {\n \"naturalLanguageQueryGenerationOptions\": {\n \"description\": \"Container for parameters required to enable the natural language query generation\\nfeature.\",\n \"properties\": {\n \"desiredState\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoTuneOptions\": {\n \"description\": \"Options for Auto-Tune.\",\n \"properties\": {\n \"desiredState\": {\n \"description\": \"The Auto-Tune desired state. Valid values are ENABLED and DISABLED.\",\n \"type\": \"string\"\n },\n \"maintenanceSchedules\": {\n \"items\": {\n \"description\": \"This object is deprecated. Use the domain's off-peak window (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html)\\nto schedule Auto-Tune optimizations. For migration instructions, see Migrating\\nfrom Auto-Tune maintenance windows (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html#off-peak-migrate).\\n\\n\\nThe Auto-Tune maintenance schedule. For more information, see Auto-Tune for\\nAmazon OpenSearch Service (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html).\",\n \"properties\": {\n \"cronExpressionForRecurrence\": {\n \"type\": \"string\"\n },\n \"duration\": {\n \"description\": \"The duration of a maintenance schedule. For more information, see Auto-Tune\\nfor Amazon OpenSearch Service (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html).\",\n \"properties\": {\n \"unit\": {\n \"description\": \"The unit of a maintenance schedule duration. Valid value is HOUR.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Integer that specifies the value of a maintenance schedule duration.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"startAt\": {\n \"format\": \"date-time\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useOffPeakWindow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"clusterConfig\": {\n \"description\": \"Container for the cluster configuration of a domain.\",\n \"properties\": {\n \"coldStorageOptions\": {\n \"description\": \"Container for the parameters required to enable cold storage for an OpenSearch\\nService domain. For more information, see Cold storage for Amazon OpenSearch\\nService (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cold-storage.html).\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"dedicatedMasterCount\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"dedicatedMasterEnabled\": {\n \"type\": \"boolean\"\n },\n \"dedicatedMasterType\": {\n \"type\": \"string\"\n },\n \"instanceCount\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"instanceType\": {\n \"type\": \"string\"\n },\n \"multiAZWithStandbyEnabled\": {\n \"type\": \"boolean\"\n },\n \"warmCount\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"warmEnabled\": {\n \"type\": \"boolean\"\n },\n \"warmType\": {\n \"type\": \"string\"\n },\n \"zoneAwarenessConfig\": {\n \"description\": \"The zone awareness configuration for an Amazon OpenSearch Service domain.\",\n \"properties\": {\n \"availabilityZoneCount\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"zoneAwarenessEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cognitoOptions\": {\n \"description\": \"Key-value pairs to configure Amazon Cognito authentication. For more information,\\nsee Configuring Amazon Cognito authentication for OpenSearch Dashboards (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html).\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"identityPoolID\": {\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"type\": \"string\"\n },\n \"userPoolID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"domainEndpointOptions\": {\n \"description\": \"Additional options for the domain endpoint, such as whether to require HTTPS\\nfor all traffic.\",\n \"properties\": {\n \"customEndpoint\": {\n \"type\": \"string\"\n },\n \"customEndpointCertificateARN\": {\n \"description\": \"The Amazon Resource Name (ARN) of the domain. See Identifiers for IAM Entities\\n(https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html) in Using Amazon\\nWeb Services Identity and Access Management for more information.\",\n \"type\": \"string\"\n },\n \"customEndpointEnabled\": {\n \"type\": \"boolean\"\n },\n \"enforceHTTPS\": {\n \"type\": \"boolean\"\n },\n \"tlsSecurityPolicy\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"ebsOptions\": {\n \"description\": \"Container for the parameters required to enable EBS-based storage for an\\nOpenSearch Service domain.\",\n \"properties\": {\n \"ebsEnabled\": {\n \"type\": \"boolean\"\n },\n \"iops\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"throughput\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"volumeSize\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"description\": \"The type of EBS volume that a domain uses. For more information, see Configuring\\nEBS-based storage (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-createupdatedomains.html#opensearch-createdomain-configure-ebs).\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"encryptionAtRestOptions\": {\n \"description\": \"Key-value pairs to enable encryption at rest.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"kmsKeyID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"engineVersion\": {\n \"description\": \"String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine\\nversion for the OpenSearch Service domain. For example, OpenSearch_1.0 or\\nElasticsearch_7.9. For more information, see Creating and managing Amazon\\nOpenSearch Service domains (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains).\",\n \"type\": \"string\"\n },\n \"ipAddressType\": {\n \"description\": \"Specify either dual stack or IPv4 as your IP address type. Dual stack allows\\nyou to share domain resources across IPv4 and IPv6 address types, and is\\nthe recommended option. If you set your IP address type to dual stack, you\\ncan't change your address type later.\",\n \"type\": \"string\"\n },\n \"logPublishingOptions\": {\n \"additionalProperties\": {\n \"description\": \"Specifies whether the Amazon OpenSearch Service domain publishes the OpenSearch\\napplication and slow logs to Amazon CloudWatch. For more information, see\\nMonitoring OpenSearch logs with Amazon CloudWatch Logs (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createdomain-configure-slow-logs.html).\\n\\n\\nAfter you enable log publishing, you still have to enable the collection\\nof slow logs using the OpenSearch REST API.\",\n \"properties\": {\n \"cloudWatchLogsLogGroupARN\": {\n \"description\": \"ARN of the Cloudwatch log group to publish logs to.\",\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Key-value pairs to configure log publishing.\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the OpenSearch Service domain to create. Domain names are unique\\nacross the domains owned by an account within an Amazon Web Services Region.\",\n \"type\": \"string\"\n },\n \"nodeToNodeEncryptionOptions\": {\n \"description\": \"Enables node-to-node encryption.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"offPeakWindowOptions\": {\n \"description\": \"Specifies a daily 10-hour time block during which OpenSearch Service can\\nperform configuration changes on the domain, including service software updates\\nand Auto-Tune enhancements that require a blue/green deployment. If no options\\nare specified, the default start time of 10:00 P.M. local time (for the Region\\nthat the domain is created in) is used.\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"offPeakWindow\": {\n \"description\": \"A custom 10-hour, low-traffic window during which OpenSearch Service can\\nperform mandatory configuration changes on the domain. These actions can\\ninclude scheduled service software updates and blue/green Auto-Tune enhancements.\\nOpenSearch Service will schedule these actions during the window that you\\nspecify.\\n\\n\\nIf you don't specify a window start time, it defaults to 10:00 P.M. local\\ntime.\\n\\n\\nFor more information, see Defining off-peak maintenance windows for Amazon\\nOpenSearch Service (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html).\",\n \"properties\": {\n \"windowStartTime\": {\n \"description\": \"The desired start time for an off-peak maintenance window (https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html).\",\n \"properties\": {\n \"hours\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minutes\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"softwareUpdateOptions\": {\n \"description\": \"Software update options for the domain.\",\n \"properties\": {\n \"autoSoftwareUpdateEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"List of tags to add to the domain upon creation.\",\n \"items\": {\n \"description\": \"A tag (key-value pair) for an Amazon OpenSearch Service resource.\",\n \"properties\": {\n \"key\": {\n \"description\": \"A string between 1 to 128 characters that specifies the key for a tag. Tag\\nkeys must be unique for the domain to which they're attached.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"A string between 0 to 256 characters that specifies the value for a tag.\\nTag values can be null and don't have to be unique in a tag set.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"vpcOptions\": {\n \"description\": \"Container for the values required to configure VPC access domains. If you\\ndon't specify these values, OpenSearch Service creates the domain with a\\npublic endpoint. For more information, see Launching your Amazon OpenSearch\\nService domains using a VPC (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/vpc.html).\",\n \"properties\": {\n \"securityGroupIDs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subnetIDs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Domain\",\n \"type\": \"object\"\n}", + "version": "opensearchservice.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Domain", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "AWS OpenSearch Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#E7157B", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-opensearchservice-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Logging", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#E7157B", + "shape": "rectangle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..e34261824bb --- /dev/null +++ b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "AWS OpenSearch Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#E7157B", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/opensearchservice-controller/main/helm", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-opensearchservice-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Logging", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#E7157B", + "shape": "rectangle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/model.json b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/model.json new file mode 100644 index 00000000000..320b0ff994b --- /dev/null +++ b/server/meshmodel/aws-opensearchservice-controller/v1.0.0/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "displayName": "AWS OpenSearch Service", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#E7157B", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "v1.0.0" + }, + "name": "aws-opensearchservice-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Logging", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/AdoptedResource.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/AdoptedResource.json new file mode 100644 index 00000000000..82f9a284d2e --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/AdoptedResource.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AdoptedResource", + "schema": "{\n \"description\": \"AdoptedResource is the schema for the AdoptedResource API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"AdoptedResourceSpec defines the desired state of the AdoptedResource.\",\n \"properties\": {\n \"aws\": {\n \"description\": \"AWSIdentifiers provide all unique ways to reference an AWS resource.\",\n \"properties\": {\n \"additionalKeys\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AdditionalKeys represents any additional arbitrary identifiers used when\\ndescribing the target resource.\",\n \"type\": \"object\"\n },\n \"arn\": {\n \"description\": \"ARN is the AWS Resource Name for the resource. It is a globally\\nunique identifier.\",\n \"type\": \"string\"\n },\n \"nameOrID\": {\n \"description\": \"NameOrId is a user-supplied string identifier for the resource. It may\\nor may not be globally unique, depending on the type of resource.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"description\": \"ResourceWithMetadata provides the values necessary to create a\\nKubernetes resource and override any of its metadata values.\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"ObjectMeta is metadata that all persisted resources must have, which includes all objects\\nusers must create.\\nIt is not possible to use `metav1.ObjectMeta` inside spec, as the controller-gen\\nautomatically converts this to an arbitrary string-string map.\\nhttps://github.com/kubernetes-sigs/controller-tools/issues/385\\n\\n\\nActive discussion about inclusion of this field in the spec is happening in this PR:\\nhttps://github.com/kubernetes-sigs/controller-tools/pull/395\\n\\n\\nUntil this is allowed, or if it never is, we will produce a subset of the object meta\\nthat contains only the fields which the user is allowed to modify in the metadata.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique\\nname ONLY IF the Name field has not been provided.\\nIf this field is used, the name returned to the client will be different\\nthan the name passed. This value will also be combined with a unique suffix.\\nThe provided value has the same validation rules as the Name field,\\nand may be truncated by the length of the suffix required to make the value\\nunique on the server.\\n\\n\\nIf this field is specified and the generated name exists, the server will\\nNOT return a 409 - instead, it will either return 201 Created or 500 with Reason\\nServerTimeout indicating a unique name could not be found in the time allotted, and the client\\nshould retry (optionally after the time indicated in the Retry-After header).\\n\\n\\nApplied only if Name is not specified.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within each name must be unique. An empty namespace is\\nequivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation.\\nNot all objects are required to be scoped to a namespace - the value of this field for\\nthose objects will be empty.\\n\\n\\nMust be a DNS_LABEL.\\nCannot be updated.\\nMore info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have\\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\\nthen an entry in this list will point to this controller, with the controller field set to true.\\nThere cannot be more than one managing controller.\",\n \"items\": {\n \"description\": \"OwnerReference contains enough information to let you identify an owning\\nobject. An owning object must be in the same namespace as the dependent, or\\nbe cluster-scoped, so there is no namespace field.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"blockOwnerDeletion\": {\n \"description\": \"If true, AND if the owner has the \\\"foregroundDeletion\\\" finalizer, then\\nthe owner cannot be deleted from the key-value store until this\\nreference is removed.\\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\\nDefaults to false.\\nTo set this field, a user needs \\\"delete\\\" permission of the owner,\\notherwise 422 (Unprocessable Entity) will be returned.\",\n \"type\": \"boolean\"\n },\n \"controller\": {\n \"description\": \"If true, this reference points to the managing controller.\",\n \"type\": \"boolean\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"apiVersion\",\n \"kind\",\n \"name\",\n \"uid\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"aws\",\n \"kubernetes\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Adopted Resource\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Adopted Resource", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/FieldExport.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/FieldExport.json new file mode 100644 index 00000000000..29b57e33e68 --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/FieldExport.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FieldExport", + "schema": "{\n \"description\": \"FieldExport is the schema for the FieldExport API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"FieldExportSpec defines the desired state of the FieldExport.\",\n \"properties\": {\n \"from\": {\n \"description\": \"ResourceFieldSelector provides the values necessary to identify an individual\\nfield on an individual K8s resource.\",\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"resource\": {\n \"description\": \"NamespacedResource provides all the values necessary to identify an ACK\\nresource of a given type (within the same namespace as the custom resource\\ncontaining this type).\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"FieldExportTarget provides the values necessary to identify the\\noutput path for a field export.\",\n \"properties\": {\n \"key\": {\n \"description\": \"Key overrides the default value (`\\u003cnamespace\\u003e.\\u003cFieldExport-resource-name\\u003e`) for the FieldExport target\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"FieldExportOutputType represents all types that can be produced by a field\\nexport operation\",\n \"enum\": [\n \"configmap\",\n \"secret\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is marked as optional, so we cannot compose `NamespacedName`\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"from\",\n \"to\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Field Export\",\n \"type\": \"object\"\n}", + "version": "services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Field Export", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HealthCheck.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HealthCheck.json new file mode 100644 index 00000000000..38ff1bbc659 --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HealthCheck.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HealthCheck", + "schema": "{\n \"description\": \"HealthCheck is the Schema for the HealthChecks API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"HealthCheckSpec defines the desired state of HealthCheck.\\n\\n\\nA complex type that contains information about one health check that is associated\\nwith the current Amazon Web Services account.\",\n \"properties\": {\n \"healthCheckConfig\": {\n \"description\": \"A complex type that contains settings for a new health check.\",\n \"properties\": {\n \"alarmIdentifier\": {\n \"description\": \"A complex type that identifies the CloudWatch alarm that you want Amazon\\nRoute 53 health checkers to use to determine whether the specified health\\ncheck is healthy.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"childHealthChecks\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"enableSNI\": {\n \"type\": \"boolean\"\n },\n \"failureThreshold\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fullyQualifiedDomainName\": {\n \"type\": \"string\"\n },\n \"healthThreshold\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"insufficientDataHealthStatus\": {\n \"type\": \"string\"\n },\n \"inverted\": {\n \"type\": \"boolean\"\n },\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"measureLatency\": {\n \"type\": \"boolean\"\n },\n \"port\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regions\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"requestInterval\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"resourcePath\": {\n \"type\": \"string\"\n },\n \"routingControlARN\": {\n \"type\": \"string\"\n },\n \"searchString\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"A complex type that contains a list of the tags that you want to add to the\\nspecified health check or hosted zone and/or the tags that you want to edit\\nValue for.\\n\\n\\nYou can add a maximum of 10 tags to a health check or a hosted zone.\",\n \"items\": {\n \"description\": \"A complex type that contains information about a tag that you want to add\\nor edit for the specified health check or hosted zone.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"healthCheckConfig\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Health Check\",\n \"type\": \"object\"\n}", + "version": "route53.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Health Check", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HostedZone.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HostedZone.json new file mode 100644 index 00000000000..ebe76dce079 --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/HostedZone.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HostedZone", + "schema": "{\n \"description\": \"HostedZone is the Schema for the HostedZones API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"HostedZoneSpec defines the desired state of HostedZone.\\n\\n\\nA complex type that contains general information about the hosted zone.\",\n \"properties\": {\n \"delegationSetID\": {\n \"description\": \"If you want to associate a reusable delegation set with this hosted zone,\\nthe ID that Amazon Route 53 assigned to the reusable delegation set when\\nyou created it. For more information about reusable delegation sets, see\\nCreateReusableDelegationSet (https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html).\\n\\n\\nIf you are using a reusable delegation set to create a public hosted zone\\nfor a subdomain, make sure that the parent hosted zone doesn't use one or\\nmore of the same name servers. If you have overlapping nameservers, the operation\\nwill cause a ConflictingDomainsExist error.\",\n \"type\": \"string\"\n },\n \"hostedZoneConfig\": {\n \"description\": \"(Optional) A complex type that contains the following optional values:\\n\\n\\n - For public and private hosted zones, an optional comment\\n\\n\\n - For private hosted zones, an optional PrivateZone element\\n\\n\\nIf you don't specify a comment or the PrivateZone element, omit HostedZoneConfig\\nand the other elements.\",\n \"properties\": {\n \"comment\": {\n \"type\": \"string\"\n },\n \"privateZone\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The name of the domain. Specify a fully qualified domain name, for example,\\nwww.example.com. The trailing dot is optional; Amazon Route 53 assumes that\\nthe domain name is fully qualified. This means that Route 53 treats www.example.com\\n(without a trailing dot) and www.example.com. (with a trailing dot) as identical.\\n\\n\\nIf you're creating a public hosted zone, this is the name you have registered\\nwith your DNS registrar. If your domain name is registered with a registrar\\nother than Route 53, change the name servers for your domain to the set of\\nNameServers that CreateHostedZone returns in DelegationSet.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"A complex type that contains a list of the tags that you want to add to the\\nspecified health check or hosted zone and/or the tags that you want to edit\\nValue for.\\n\\n\\nYou can add a maximum of 10 tags to a health check or a hosted zone.\",\n \"items\": {\n \"description\": \"A complex type that contains information about a tag that you want to add\\nor edit for the specified health check or hosted zone.\",\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"vpc\": {\n \"description\": \"(Private hosted zones only) A complex type that contains information about\\nthe Amazon VPC that you're associating with this hosted zone.\\n\\n\\nYou can specify only one Amazon VPC when you create a private hosted zone.\\nIf you are associating a VPC with a hosted zone with this request, the paramaters\\nVPCId and VPCRegion are also required.\\n\\n\\nTo associate additional Amazon VPCs with the hosted zone, use AssociateVPCWithHostedZone\\n(https://docs.aws.amazon.com/Route53/latest/APIReference/API_AssociateVPCWithHostedZone.html)\\nafter you create a hosted zone.\",\n \"properties\": {\n \"vpcID\": {\n \"description\": \"(Private hosted zones only) The ID of an Amazon VPC.\",\n \"type\": \"string\"\n },\n \"vpcRegion\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Hosted Zone\",\n \"type\": \"object\"\n}", + "version": "route53.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Hosted Zone", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/RecordSet.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/RecordSet.json new file mode 100644 index 00000000000..d900da59ccf --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/components/RecordSet.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RecordSet", + "schema": "{\n \"description\": \"RecordSet is the Schema for the RecordSets API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"RecordSetSpec defines the desired state of RecordSet.\",\n \"properties\": {\n \"aliasTarget\": {\n \"description\": \"Alias resource record sets only: Information about the Amazon Web Services\\nresource, such as a CloudFront distribution or an Amazon S3 bucket, that\\nyou want to route traffic to.\\n\\n\\nIf you're creating resource records sets for a private hosted zone, note\\nthe following:\\n\\n\\n - You can't create an alias resource record set in a private hosted zone\\n to route traffic to a CloudFront distribution.\\n\\n\\n - For information about creating failover resource record sets in a private\\n hosted zone, see Configuring Failover in a Private Hosted Zone (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)\\n in the Amazon Route 53 Developer Guide.\",\n \"properties\": {\n \"dnsName\": {\n \"type\": \"string\"\n },\n \"evaluateTargetHealth\": {\n \"type\": \"boolean\"\n },\n \"hostedZoneID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"changeBatch\": {\n \"description\": \"A complex type that contains an optional comment and the Changes element.\",\n \"properties\": {\n \"changes\": {\n \"items\": {\n \"description\": \"The information for each resource record set that you want to change.\",\n \"properties\": {\n \"action\": {\n \"type\": \"string\"\n },\n \"resourceRecordSet\": {\n \"description\": \"Information about the resource record set to create or delete.\",\n \"properties\": {\n \"aliasTarget\": {\n \"description\": \"Alias resource record sets only: Information about the Amazon Web Services\\nresource, such as a CloudFront distribution or an Amazon S3 bucket, that\\nyou want to route traffic to.\\n\\n\\nWhen creating resource record sets for a private hosted zone, note the following:\\n\\n\\n * For information about creating failover resource record sets in a private\\n hosted zone, see Configuring Failover in a Private Hosted Zone (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html).\",\n \"properties\": {\n \"dnsName\": {\n \"type\": \"string\"\n },\n \"evaluateTargetHealth\": {\n \"type\": \"boolean\"\n },\n \"hostedZoneID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cidrRoutingConfig\": {\n \"description\": \"The object that is specified in resource record set object when you are linking\\na resource record set to a CIDR location.\\n\\n\\nA LocationName with an asterisk “*” can be used to create a default CIDR\\nrecord. CollectionId is still required for default record.\",\n \"properties\": {\n \"collectionID\": {\n \"type\": \"string\"\n },\n \"locationName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failover\": {\n \"type\": \"string\"\n },\n \"geoLocation\": {\n \"description\": \"A complex type that contains information about a geographic location.\",\n \"properties\": {\n \"continentCode\": {\n \"type\": \"string\"\n },\n \"countryCode\": {\n \"type\": \"string\"\n },\n \"subdivisionCode\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheckID\": {\n \"type\": \"string\"\n },\n \"multiValueAnswer\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"resourceRecords\": {\n \"items\": {\n \"description\": \"Information specific to the resource record.\\n\\n\\nIf you're creating an alias resource record set, omit ResourceRecord.\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"setIdentifier\": {\n \"type\": \"string\"\n },\n \"trafficPolicyInstanceID\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type_\": {\n \"type\": \"string\"\n },\n \"weight\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"comment\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cidrRoutingConfig\": {\n \"description\": \"The object that is specified in resource record set object when you are linking\\na resource record set to a CIDR location.\\n\\n\\nA LocationName with an asterisk “*” can be used to create a default CIDR\\nrecord. CollectionId is still required for default record.\",\n \"properties\": {\n \"collectionID\": {\n \"type\": \"string\"\n },\n \"locationName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failover\": {\n \"description\": \"Failover resource record sets only: To configure failover, you add the Failover\\nelement to two resource record sets. For one resource record set, you specify\\nPRIMARY as the value for Failover; for the other resource record set, you\\nspecify SECONDARY. In addition, you include the HealthCheckId element and\\nspecify the health check that you want Amazon Route 53 to perform for each\\nresource record set.\\n\\n\\nExcept where noted, the following failover behaviors assume that you have\\nincluded the HealthCheckId element in both resource record sets:\\n\\n\\n - When the primary resource record set is healthy, Route 53 responds to\\n DNS queries with the applicable value from the primary resource record\\n set regardless of the health of the secondary resource record set.\\n\\n\\n - When the primary resource record set is unhealthy and the secondary\\n resource record set is healthy, Route 53 responds to DNS queries with\\n the applicable value from the secondary resource record set.\\n\\n\\n - When the secondary resource record set is unhealthy, Route 53 responds\\n to DNS queries with the applicable value from the primary resource record\\n set regardless of the health of the primary resource record set.\\n\\n\\n - If you omit the HealthCheckId element for the secondary resource record\\n set, and if the primary resource record set is unhealthy, Route 53 always\\n responds to DNS queries with the applicable value from the secondary resource\\n record set. This is true regardless of the health of the associated endpoint.\\n\\n\\nYou can't create non-failover resource record sets that have the same values\\nfor the Name and Type elements as failover resource record sets.\\n\\n\\nFor failover alias resource record sets, you must also include the EvaluateTargetHealth\\nelement and set the value to true.\\n\\n\\nFor more information about configuring failover for Route 53, see the following\\ntopics in the Amazon Route 53 Developer Guide:\\n\\n\\n - Route 53 Health Checks and DNS Failover (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)\\n\\n\\n - Configuring Failover in a Private Hosted Zone (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)\",\n \"type\": \"string\"\n },\n \"geoLocation\": {\n \"description\": \"Geolocation resource record sets only: A complex type that lets you control\\nhow Amazon Route 53 responds to DNS queries based on the geographic origin\\nof the query. For example, if you want all queries from Africa to be routed\\nto a web server with an IP address of 192.0.2.111, create a resource record\\nset with a Type of A and a ContinentCode of AF.\\n\\n\\nAlthough creating geolocation and geolocation alias resource record sets\\nin a private hosted zone is allowed, it's not supported.\\n\\n\\nIf you create separate resource record sets for overlapping geographic regions\\n(for example, one resource record set for a continent and one for a country\\non the same continent), priority goes to the smallest geographic region.\\nThis allows you to route most queries for a continent to one resource and\\nto route queries for a country on that continent to a different resource.\\n\\n\\nYou can't create two geolocation resource record sets that specify the same\\ngeographic location.\\n\\n\\nThe value * in the CountryCode element matches all geographic locations that\\naren't specified in other geolocation resource record sets that have the\\nsame values for the Name and Type elements.\\n\\n\\nGeolocation works by mapping IP addresses to locations. However, some IP\\naddresses aren't mapped to geographic locations, so even if you create geolocation\\nresource record sets that cover all seven continents, Route 53 will receive\\nsome DNS queries from locations that it can't identify. We recommend that\\nyou create a resource record set for which the value of CountryCode is *.\\nTwo groups of queries are routed to the resource that you specify in this\\nrecord: queries that come from locations for which you haven't created geolocation\\nresource record sets and queries from IP addresses that aren't mapped to\\na location. If you don't create a * resource record set, Route 53 returns\\na \\\"no answer\\\" response for queries from those locations.\\n\\n\\nYou can't create non-geolocation resource record sets that have the same\\nvalues for the Name and Type elements as geolocation resource record sets.\",\n \"properties\": {\n \"continentCode\": {\n \"type\": \"string\"\n },\n \"countryCode\": {\n \"type\": \"string\"\n },\n \"subdivisionCode\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheckID\": {\n \"description\": \"If you want Amazon Route 53 to return this resource record set in response\\nto a DNS query only when the status of a health check is healthy, include\\nthe HealthCheckId element and specify the ID of the applicable health check.\\n\\n\\nRoute 53 determines whether a resource record set is healthy based on one\\nof the following:\\n\\n\\n - By periodically sending a request to the endpoint that is specified\\n in the health check\\n\\n\\n - By aggregating the status of a specified group of health checks (calculated\\n health checks)\\n\\n\\n - By determining the current state of a CloudWatch alarm (CloudWatch metric\\n health checks)\\n\\n\\nRoute 53 doesn't check the health of the endpoint that is specified in the\\nresource record set, for example, the endpoint specified by the IP address\\nin the Value element. When you add a HealthCheckId element to a resource\\nrecord set, Route 53 checks the health of the endpoint that you specified\\nin the health check.\\n\\n\\nFor more information, see the following topics in the Amazon Route 53 Developer\\nGuide:\\n\\n\\n - How Amazon Route 53 Determines Whether an Endpoint Is Healthy (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html)\\n\\n\\n - Route 53 Health Checks and DNS Failover (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)\\n\\n\\n - Configuring Failover in a Private Hosted Zone (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)\\n\\n\\n# When to Specify HealthCheckId\\n\\n\\nSpecifying a value for HealthCheckId is useful only when Route 53 is choosing\\nbetween two or more resource record sets to respond to a DNS query, and you\\nwant Route 53 to base the choice in part on the status of a health check.\\nConfiguring health checks makes sense only in the following configurations:\\n\\n\\n - Non-alias resource record sets: You're checking the health of a group\\n of non-alias resource record sets that have the same routing policy, name,\\n and type (such as multiple weighted records named www.example.com with\\n a type of A) and you specify health check IDs for all the resource record\\n sets. If the health check status for a resource record set is healthy,\\n Route 53 includes the record among the records that it responds to DNS\\n queries with. If the health check status for a resource record set is\\n unhealthy, Route 53 stops responding to DNS queries using the value for\\n that resource record set. If the health check status for all resource\\n record sets in the group is unhealthy, Route 53 considers all resource\\n record sets in the group healthy and responds to DNS queries accordingly.\\n\\n\\n - Alias resource record sets: You specify the following settings: You\\n set EvaluateTargetHealth to true for an alias resource record set in a\\n group of resource record sets that have the same routing policy, name,\\n and type (such as multiple weighted records named www.example.com with\\n a type of A). You configure the alias resource record set to route traffic\\n to a non-alias resource record set in the same hosted zone. You specify\\n a health check ID for the non-alias resource record set. If the health\\n check status is healthy, Route 53 considers the alias resource record\\n set to be healthy and includes the alias record among the records that\\n it responds to DNS queries with. If the health check status is unhealthy,\\n Route 53 stops responding to DNS queries using the alias resource record\\n set. The alias resource record set can also route traffic to a group of\\n non-alias resource record sets that have the same routing policy, name,\\n and type. In that configuration, associate health checks with all of the\\n resource record sets in the group of non-alias resource record sets.\\n\\n\\n# Geolocation Routing\\n\\n\\nFor geolocation resource record sets, if an endpoint is unhealthy, Route\\n53 looks for a resource record set for the larger, associated geographic\\nregion. For example, suppose you have resource record sets for a state in\\nthe United States, for the entire United States, for North America, and a\\nresource record set that has * for CountryCode is *, which applies to all\\nlocations. If the endpoint for the state resource record set is unhealthy,\\nRoute 53 checks for healthy resource record sets in the following order until\\nit finds a resource record set for which the endpoint is healthy:\\n\\n\\n - The United States\\n\\n\\n - North America\\n\\n\\n - The default resource record set\\n\\n\\n# Specifying the Health Check Endpoint by Domain Name\\n\\n\\nIf your health checks specify the endpoint only by domain name, we recommend\\nthat you create a separate health check for each endpoint. For example, create\\na health check for each HTTP server that is serving content for www.example.com.\\nFor the value of FullyQualifiedDomainName, specify the domain name of the\\nserver (such as us-east-2-www.example.com), not the name of the resource\\nrecord sets (www.example.com).\\n\\n\\nHealth check results will be unpredictable if you do the following:\\n\\n\\n - Create a health check that has the same value for FullyQualifiedDomainName\\n as the name of a resource record set.\\n\\n\\n - Associate that health check with the resource record set.\",\n \"type\": \"string\"\n },\n \"hostedZoneID\": {\n \"description\": \"The ID of the hosted zone that contains the resource record sets that you\\nwant to change.\",\n \"type\": \"string\"\n },\n \"hostedZoneRef\": {\n \"description\": \"AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference\\ntype to provide more user friendly syntax for references using 'from' field\\nEx:\\nAPIIDRef:\\n\\n\\n\\tfrom:\\n\\t name: my-api\",\n \"properties\": {\n \"from\": {\n \"description\": \"AWSResourceReference provides all the values necessary to reference another\\nk8s resource for finding the identifier(Id/ARN/Name)\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"multiValueAnswer\": {\n \"description\": \"Multivalue answer resource record sets only: To route traffic approximately\\nrandomly to multiple resources, such as web servers, create one multivalue\\nanswer record for each resource and specify true for MultiValueAnswer. Note\\nthe following:\\n\\n\\n - If you associate a health check with a multivalue answer resource record\\n set, Amazon Route 53 responds to DNS queries with the corresponding IP\\n address only when the health check is healthy.\\n\\n\\n - If you don't associate a health check with a multivalue answer record,\\n Route 53 always considers the record to be healthy.\\n\\n\\n - Route 53 responds to DNS queries with up to eight healthy records; if\\n you have eight or fewer healthy records, Route 53 responds to all DNS\\n queries with all the healthy records.\\n\\n\\n - If you have more than eight healthy records, Route 53 responds to different\\n DNS resolvers with different combinations of healthy records.\\n\\n\\n - When all records are unhealthy, Route 53 responds to DNS queries with\\n up to eight unhealthy records.\\n\\n\\n - If a resource becomes unavailable after a resolver caches a response,\\n client software typically tries another of the IP addresses in the response.\\n\\n\\nYou can't create multivalue answer alias records.\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"For ChangeResourceRecordSets requests, the name of the record that you want\\nto create, update, or delete. For ListResourceRecordSets responses, the name\\nof a record in the specified hosted zone.\\n\\n\\n# ChangeResourceRecordSets Only\\n\\n\\nEnter a fully qualified domain name, for example, www.example.com. You can\\noptionally include a trailing dot. If you omit the trailing dot, Amazon Route\\n53 assumes that the domain name that you specify is fully qualified. This\\nmeans that Route 53 treats www.example.com (without a trailing dot) and www.example.com.\\n(with a trailing dot) as identical.\\n\\n\\nFor information about how to specify characters other than a-z, 0-9, and\\n- (hyphen) and how to specify internationalized domain names, see DNS Domain\\nName Format (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html)\\nin the Amazon Route 53 Developer Guide.\\n\\n\\nYou can use the asterisk (*) wildcard to replace the leftmost label in a\\ndomain name, for example, *.example.com. Note the following:\\n\\n\\n - The * must replace the entire label. For example, you can't specify\\n *prod.example.com or prod*.example.com.\\n\\n\\n - The * can't replace any of the middle labels, for example, marketing.*.example.com.\\n\\n\\n - If you include * in any position other than the leftmost label in a\\n domain name, DNS treats it as an * character (ASCII 42), not as a wildcard.\\n You can't use the * wildcard for resource records sets that have a type\\n of NS.\\n\\n\\nYou can use the * wildcard as the leftmost label in a domain name, for example,\\n*.example.com. You can't use an * for one of the middle labels, for example,\\nmarketing.*.example.com. In addition, the * must replace the entire label;\\nfor example, you can't specify prod*.example.com.\",\n \"type\": \"string\"\n },\n \"recordType\": {\n \"description\": \"The DNS record type. For information about different record types and how\\ndata is encoded for them, see Supported DNS Resource Record Types (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html)\\nin the Amazon Route 53 Developer Guide.\\n\\n\\nValid values for basic resource record sets: A | AAAA | CAA | CNAME | DS\\n|MX | NAPTR | NS | PTR | SOA | SPF | SRV | TXT\\n\\n\\nValues for weighted, latency, geolocation, and failover resource record sets:\\nA | AAAA | CAA | CNAME | MX | NAPTR | PTR | SPF | SRV | TXT. When creating\\na group of weighted, latency, geolocation, or failover resource record sets,\\nspecify the same value for all of the resource record sets in the group.\\n\\n\\nValid values for multivalue answer resource record sets: A | AAAA | MX |\\nNAPTR | PTR | SPF | SRV | TXT\\n\\n\\nSPF records were formerly used to verify the identity of the sender of email\\nmessages. However, we no longer recommend that you create resource record\\nsets for which the value of Type is SPF. RFC 7208, Sender Policy Framework\\n(SPF) for Authorizing Use of Domains in Email, Version 1, has been updated\\nto say, \\\"...[I]ts existence and mechanism defined in [RFC4408] have led to\\nsome interoperability issues. Accordingly, its use is no longer appropriate\\nfor SPF version 1; implementations are not to use it.\\\" In RFC 7208, see section\\n14.1, The SPF DNS Record Type (http://tools.ietf.org/html/rfc7208#section-14.1).\\n\\n\\nValues for alias resource record sets:\\n\\n\\n - Amazon API Gateway custom regional APIs and edge-optimized APIs: A\\n\\n\\n - CloudFront distributions: A If IPv6 is enabled for the distribution,\\n create two resource record sets to route traffic to your distribution,\\n one with a value of A and one with a value of AAAA.\\n\\n\\n - Amazon API Gateway environment that has a regionalized subdomain: A\\n\\n\\n - ELB load balancers: A | AAAA\\n\\n\\n - Amazon S3 buckets: A\\n\\n\\n - Amazon Virtual Private Cloud interface VPC endpoints A\\n\\n\\n - Another resource record set in this hosted zone: Specify the type of\\n the resource record set that you're creating the alias for. All values\\n are supported except NS and SOA. If you're creating an alias record that\\n has the same name as the hosted zone (known as the zone apex), you can't\\n route traffic to a record for which the value of Type is CNAME. This is\\n because the alias record must have the same type as the record you're\\n routing traffic to, and creating a CNAME record for the zone apex isn't\\n supported even for an alias record.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"Latency-based resource record sets only: The Amazon EC2 Region where you\\ncreated the resource that this resource record set refers to. The resource\\ntypically is an Amazon Web Services resource, such as an EC2 instance or\\nan ELB load balancer, and is referred to by an IP address or a DNS domain\\nname, depending on the record type.\\n\\n\\nWhen Amazon Route 53 receives a DNS query for a domain name and type for\\nwhich you have created latency resource record sets, Route 53 selects the\\nlatency resource record set that has the lowest latency between the end user\\nand the associated Amazon EC2 Region. Route 53 then returns the value that\\nis associated with the selected resource record set.\\n\\n\\nNote the following:\\n\\n\\n - You can only specify one ResourceRecord per latency resource record\\n set.\\n\\n\\n - You can only create one latency resource record set for each Amazon\\n EC2 Region.\\n\\n\\n - You aren't required to create latency resource record sets for all Amazon\\n EC2 Regions. Route 53 will choose the region with the best latency from\\n among the regions that you create latency resource record sets for.\\n\\n\\n - You can't create non-latency resource record sets that have the same\\n values for the Name and Type elements as latency resource record sets.\",\n \"type\": \"string\"\n },\n \"resourceRecords\": {\n \"description\": \"Information about the resource records to act upon.\\n\\n\\nIf you're creating an alias resource record set, omit ResourceRecords.\",\n \"items\": {\n \"description\": \"Information specific to the resource record.\\n\\n\\nIf you're creating an alias resource record set, omit ResourceRecord.\",\n \"properties\": {\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"setIdentifier\": {\n \"description\": \"Resource record sets that have a routing policy other than simple: An identifier\\nthat differentiates among multiple resource record sets that have the same\\ncombination of name and type, such as multiple weighted resource record sets\\nnamed acme.example.com that have a type of A. In a group of resource record\\nsets that have the same name and type, the value of SetIdentifier must be\\nunique for each resource record set.\\n\\n\\nFor information about routing policies, see Choosing a Routing Policy (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html)\\nin the Amazon Route 53 Developer Guide.\",\n \"type\": \"string\"\n },\n \"ttl\": {\n \"description\": \"The resource record cache time to live (TTL), in seconds. Note the following:\\n\\n\\n - If you're creating or updating an alias resource record set, omit TTL.\\n Amazon Route 53 uses the value of TTL for the alias target.\\n\\n\\n - If you're associating this resource record set with a health check (if\\n you're adding a HealthCheckId element), we recommend that you specify\\n a TTL of 60 seconds or less so clients respond quickly to changes in health\\n status.\\n\\n\\n - All of the resource record sets in a group of weighted resource record\\n sets must have the same value for TTL.\\n\\n\\n - If a group of weighted resource record sets includes one or more weighted\\n alias resource record sets for which the alias target is an ELB load balancer,\\n we recommend that you specify a TTL of 60 seconds for all of the non-alias\\n weighted resource record sets that have the same name and type. Values\\n other than 60 seconds (the TTL for load balancers) will change the effect\\n of the values that you specify for Weight.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"weight\": {\n \"description\": \"Weighted resource record sets only: Among resource record sets that have\\nthe same combination of DNS name and type, a value that determines the proportion\\nof DNS queries that Amazon Route 53 responds to using the current resource\\nrecord set. Route 53 calculates the sum of the weights for the resource record\\nsets that have the same combination of DNS name and type. Route 53 then responds\\nto queries based on the ratio of a resource's weight to the total. Note the\\nfollowing:\\n\\n\\n - You must specify a value for the Weight element for every weighted resource\\n record set.\\n\\n\\n - You can only specify one ResourceRecord per weighted resource record\\n set.\\n\\n\\n - You can't create latency, failover, or geolocation resource record sets\\n that have the same values for the Name and Type elements as weighted resource\\n record sets.\\n\\n\\n - You can create a maximum of 100 weighted resource record sets that have\\n the same values for the Name and Type elements.\\n\\n\\n - For weighted (but not weighted alias) resource record sets, if you set\\n Weight to 0 for a resource record set, Route 53 never responds to queries\\n with the applicable value for that resource record set. However, if you\\n set Weight to 0 for all resource record sets that have the same combination\\n of DNS name and type, traffic is routed to all resources with equal probability.\\n The effect of setting Weight to 0 is different when you associate health\\n checks with weighted resource record sets. For more information, see Options\\n for Configuring Route 53 Active-Active and Active-Passive Failover (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html)\\n in the Amazon Route 53 Developer Guide.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"recordType\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Record Set\",\n \"type\": \"object\"\n}", + "version": "route53.services.k8s.aws/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Record Set", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "source_uri": "git://github.com/aws-controllers-k8s/route53-controller/main/helm", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "svgColor": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\" width='40' height='40'\u003e \u003cg id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/model.json b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/model.json new file mode 100644 index 00000000000..14981f58580 --- /dev/null +++ b/server/meshmodel/aws-route53-controller/v0.0.17/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Cloud Native Network" + }, + "displayName": "AWS Route 53", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#8C4FFF", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture-BG/32/Networking-Content-Delivery\" fill=\"#8C4FFF\"\u003e \u003crect xmlns=\"http://www.w3.org/2000/svg\" id=\"Rectangle\" x=\"0\" y=\"0\" width=\"40\" height=\"40\"\u003e\u003c/rect\u003e \u003c/g\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 40 40\" height=\"20\" width=\"20\"\u003e \u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Icon-Architecture/32/Arch_Amazon-Route-53_32\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"\u003e \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.0244033,20.3143713 C24.3665874,20.6307385 24.5381782,21.0548902 24.5381782,21.5858283 C24.5381782,22.1656687 24.3296754,22.6277445 23.9136674,22.9740519 C23.4976594,23.3193613 22.9369964,23.492016 22.2346712,23.492016 C21.6789962,23.492016 21.1303047,23.3732535 20.5866012,23.1377246 L20.5866012,22.4281437 C21.2300668,22.6417166 21.779756,22.747505 22.2346712,22.747505 C22.682603,22.747505 23.0287775,22.6467066 23.2711994,22.4461078 C23.5126237,22.245509 23.6343335,21.9580838 23.6343335,21.5858283 C23.6343335,20.8712575 23.1824112,20.5139721 22.2785665,20.5139721 C21.9952421,20.5139721 21.7149106,20.5289421 21.4365743,20.5578842 L21.4365743,19.9730539 L23.2971376,17.9431138 L20.6753895,17.9431138 L20.6753895,17.2165669 L24.2817896,17.2165669 L24.2817896,17.9171657 L22.456143,19.8493014 C22.4860717,19.8433134 22.5150027,19.8403194 22.5449313,19.8403194 L22.632722,19.8403194 C23.2173279,19.8403194 23.6812217,19.999002 24.0244033,20.3143713 M18.8766787,20.1596806 C19.2358223,20.496008 19.4173893,20.9600798 19.4173893,21.5508982 C19.4173893,22.1297405 19.2068913,22.5988024 18.7878904,22.9550898 C18.3678919,23.3133733 17.8152099,23.492016 17.1308418,23.492016 C16.5282787,23.492016 15.9646228,23.3732535 15.4388765,23.1377246 L15.4388765,22.4281437 C16.0943136,22.6417166 16.6549766,22.747505 17.1218632,22.747505 C17.5697951,22.747505 17.914972,22.6457086 18.154401,22.4421158 C18.3928325,22.237525 18.5135446,21.9441118 18.5135446,21.5598802 C18.5135446,21.1407186 18.4008134,20.8353293 18.1763487,20.6467066 C17.951884,20.4580838 17.585757,20.3632735 17.0769703,20.3632735 C16.7108434,20.3632735 16.2539329,20.3932136 15.7042437,20.4520958 L15.7042437,19.8662675 L15.8728417,17.2165669 L19.1061315,17.2165669 L19.1061315,17.9431138 L16.617067,17.9431138 L16.501343,19.742515 C16.8265674,19.6836327 17.1188704,19.6536926 17.3792495,19.6536926 C18.0167293,19.6536926 18.5165375,19.8223553 18.8766787,20.1596806 M25.5298135,26.6217565 C23.288159,27.0249501 21.3228455,27.9351297 20,28.6806387 C18.6771545,27.9351297 16.711841,27.0249501 14.4691889,26.6217565 C13.8426828,26.508982 10.7151408,25.8572854 10.7151408,24.0628743 C10.7151408,23.2265469 11.0164224,22.6706587 11.5920497,21.6776447 C12.2883892,20.4780439 13.1543243,18.9850299 13.1543243,16.8303393 C13.1543243,15.3023952 12.7552759,13.8343313 11.9671552,12.4620758 L12.2165605,12.1556886 C14.8273348,13.4491018 17.7503645,13.2744511 20,11.8522954 C22.2506331,13.2734531 25.1726652,13.4491018 27.7834395,12.1556886 L28.0328448,12.4620758 C27.2447241,13.8343313 26.8446781,15.3023952 26.8446781,16.8303393 C26.8446781,18.9850299 27.7106132,20.4780439 28.4079503,21.6776447 C28.9835776,22.6706587 29.2838616,23.2265469 29.2838616,24.0628743 C29.2838616,25.8572854 26.1573172,26.508982 25.5298135,26.6217565 M27.8422991,16.8303393 C27.8422991,15.3762475 28.2523214,13.9810379 29.0623897,12.6836327 C29.1751209,12.501996 29.1601565,12.2684631 29.0264753,12.1037924 L28.3002072,11.2105788 C28.1475712,11.0219561 27.8812064,10.9690619 27.6707083,11.0878244 C26.5364132,11.7145709 25.3512394,12.0329341 24.1520988,12.0329341 C22.7035531,12.0329341 21.4375719,11.6437126 20.284322,10.8433134 C20.1127312,10.7255489 19.8872688,10.7255489 19.715678,10.8433134 C18.5614304,11.6437126 17.2964469,12.0329341 15.8479012,12.0329341 C14.6487606,12.0329341 13.4635868,11.7145709 12.3282941,11.0878244 C12.1167984,10.9690619 11.8514312,11.0219561 11.6997928,11.2105788 L10.9735247,12.1037924 C10.8388458,12.2684631 10.8248791,12.501996 10.9376103,12.6836327 C11.746681,13.9810379 12.1567032,15.3762475 12.1567032,16.8303393 C12.1567032,18.7165669 11.3655897,20.0808383 10.7291075,21.1766467 C10.1026015,22.257485 9.71751976,22.9750499 9.71751976,24.0628743 C9.71751976,26.5868263 13.2201673,27.4111776 14.2926099,27.6037924 C16.5392526,28.006986 18.4995779,28.9590818 19.7485995,29.6866267 C19.8264139,29.7325349 19.913207,29.754491 20,29.754491 C20.086793,29.754491 20.1735861,29.7325349 20.2514005,29.6866267 C21.5004221,28.9590818 23.4607474,28.006986 25.7063924,27.6037924 C26.7798327,27.4111776 30.2814826,26.5868263 30.2814826,24.0628743 C30.2814826,22.9750499 29.8973985,22.257485 29.2708925,21.1766467 C28.6344103,20.0808383 27.8422991,18.7165669 27.8422991,16.8303393 M26.0096693,29.2974052 C23.1883969,29.8043912 20.8200445,31.3133733 20,31.8852295 C19.1799555,31.3133733 16.8116031,29.8043912 13.9893331,29.2974052 C12.5836851,29.0449102 7.99762106,27.9211577 7.99762106,24.0628743 C7.99762106,22.4570858 8.62911519,21.3672655 9.24165452,20.3133733 C9.82925332,19.3003992 10.4368045,18.253493 10.4368045,16.8303393 C10.4368045,14.6127745 9.17182104,13.0389222 8.52436498,12.3782435 C9.19975443,11.5568862 10.8378482,9.55988024 11.6708618,8.48802395 C12.93385,9.66866267 14.3993554,10.3123752 15.8479012,10.3123752 C17.4570639,10.3123752 18.7898857,9.66267465 20,8.27644711 C21.2101143,9.66267465 22.5429361,10.3123752 24.1520988,10.3123752 C25.6006446,10.3123752 27.06615,9.66866267 28.3281406,8.48802395 C29.1611542,9.55988024 30.8002456,11.5568862 31.475635,12.3782435 C30.8271813,13.0389222 29.5631955,14.6127745 29.5631955,16.8303393 C29.5631955,18.253493 30.1707467,19.3003992 30.7583455,20.3133733 C31.3698872,21.3672655 32.0023789,22.4570858 32.0023789,24.0628743 C32.0023789,27.9211577 27.4153173,29.0449102 26.0096693,29.2974052 M31.6212877,19.8123752 C31.0516461,18.8313373 30.5608165,17.9840319 30.5608165,16.8303393 C30.5608165,14.4001996 32.4533037,12.8263473 32.4732561,12.8103792 C32.5750134,12.7255489 32.641854,12.6037924 32.6538255,12.4720559 C32.6667946,12.3403194 32.6278873,12.2075848 32.5430896,12.1047904 C32.5121633,12.0678643 29.4774,8.38922156 28.7840534,7.43712575 C28.6962628,7.31736527 28.5595887,7.24151697 28.4099455,7.23353293 C28.2672857,7.2255489 28.1176425,7.28243513 28.0158852,7.39021956 C26.8556519,8.63073852 25.483923,9.31437126 24.1520988,9.31437126 C22.6806078,9.31437126 21.5223697,8.65768463 20.3960556,7.18562874 C20.2075052,6.93812375 19.7924948,6.93812375 19.6029468,7.18562874 C18.4766326,8.65768463 17.3183946,9.31437126 15.8479012,9.31437126 C14.516077,9.31437126 13.1443481,8.63073852 11.9841148,7.39021956 C11.8823575,7.28243513 11.7337119,7.22654691 11.5890569,7.23353293 C11.4404113,7.24151697 11.3037372,7.31736527 11.2159466,7.43712575 C10.5226,8.38922156 7.4878367,12.0678643 7.45691044,12.1047904 C7.37211265,12.2075848 7.33220781,12.3403194 7.34517689,12.4730539 C7.35814596,12.6057884 7.42398895,12.7265469 7.52774154,12.8103792 C7.54669634,12.8263473 9.43918349,14.3852295 9.43918349,16.8303393 C9.43918349,17.9840319 8.94835393,18.8313373 8.37771468,19.8123752 C7.73225386,20.9261477 7,22.1876248 7,24.0628743 C7,27.1886228 9.54592894,29.5129741 13.8127542,30.2794411 C17.0021487,30.8532934 19.6697874,32.8762475 19.6957256,32.8962076 C19.7855115,32.9650699 19.8922569,33 20,33 C20.1067455,33 20.2144885,32.9650699 20.3042744,32.8962076 C20.3302126,32.8762475 22.9978513,30.8532934 26.1872458,30.2794411 C30.4530734,29.5129741 33,27.1886228 33,24.0628743 C33,22.1876248 32.2677461,20.9261477 31.6212877,19.8123752\" id=\"Amazon-Route-53-Icon_32_Squid\" fill=\"#FFFFFF\"\u003e\u003c/path\u003e \u003c/g\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v0.0.17" + }, + "name": "aws-route53-controller", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Networking Content Delivery", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackCluster.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackCluster.json new file mode 100644 index 00000000000..d86f85139e2 --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackCluster.json @@ -0,0 +1,70 @@ +{ + "capabilities": null, + "component": { + "kind": "OpenStackCluster", + "schema": "{\n \"description\": \"OpenStackCluster is the Schema for the openstackclusters API.\\n\\n\\nDeprecated: This type will be removed in one of the next releases.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackClusterSpec defines the desired state of OpenStackCluster.\",\n \"properties\": {\n \"allowAllInClusterTraffic\": {\n \"description\": \"AllowAllInClusterTraffic is only used when managed security groups are in use.\\nIf set to true, the rules for the managed security groups are configured so that all\\ningress and egress between cluster nodes is permitted, allowing CNIs other than\\nCalico to be used.\",\n \"type\": \"boolean\"\n },\n \"apiServerFixedIP\": {\n \"description\": \"APIServerFixedIP is the fixed IP which will be associated with the API server.\\nIn the case where the API server has a floating IP but not a managed load balancer,\\nthis field is not used.\\nIf a managed load balancer is used and this field is not specified, a fixed IP will\\nbe dynamically allocated for the load balancer.\\nIf a managed load balancer is not used AND the API server floating IP is disabled,\\nthis field MUST be specified and should correspond to a pre-allocated port that\\nholds the fixed IP to be used as a VIP.\",\n \"type\": \"string\"\n },\n \"apiServerFloatingIP\": {\n \"description\": \"APIServerFloatingIP is the floatingIP which will be associated with the API server.\\nThe floatingIP will be created if it does not already exist.\\nIf not specified, a new floatingIP is allocated.\\nThis field is not used if DisableAPIServerFloatingIP is set to true.\",\n \"type\": \"string\"\n },\n \"apiServerLoadBalancer\": {\n \"description\": \"APIServerLoadBalancer configures the optional LoadBalancer for the APIServer.\\nIt must be activated by setting `enabled: true`.\",\n \"properties\": {\n \"additionalPorts\": {\n \"description\": \"AdditionalPorts adds additional tcp ports to the load balancer.\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"allowedCidrs\": {\n \"description\": \"AllowedCIDRs restrict access to all API-Server listeners to the given address CIDRs.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enabled\": {\n \"description\": \"Enabled defines whether a load balancer should be created.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"apiServerPort\": {\n \"description\": \"APIServerPort is the port on which the listener on the APIServer\\nwill be created\",\n \"type\": \"integer\"\n },\n \"bastion\": {\n \"description\": \"Bastion is the OpenStack instance to login the nodes\\n\\n\\nAs a rolling update is not ideal during a bastion host session, we\\nprevent changes to a running bastion configuration. Set `enabled: false` to\\nmake changes.\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"instance\": {\n \"description\": \"Instance for the bastion itself\",\n \"properties\": {\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"configDrive\": {\n \"description\": \"Config Drive support\",\n \"type\": \"boolean\"\n },\n \"flavor\": {\n \"description\": \"The flavor reference for the flavor for your server instance.\",\n \"type\": \"string\"\n },\n \"floatingIP\": {\n \"description\": \"The floatingIP which will be associated to the machine, only used for master.\\nThe floatingIP should have been created and haven't been associated.\",\n \"type\": \"string\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"image\": {\n \"description\": \"The name of the image to use for your server instance.\\nIf the RootVolume is specified, this will be ignored and use rootVolume directly.\",\n \"type\": \"string\"\n },\n \"imageUUID\": {\n \"description\": \"The uuid of the image to use for your server instance.\\nif it's empty, Image name will be used\",\n \"type\": \"string\"\n },\n \"instanceID\": {\n \"description\": \"InstanceID is the OpenStack instance ID for this machine.\",\n \"type\": \"string\"\n },\n \"networks\": {\n \"description\": \"A networks object. Required parameter when there are multiple networks defined for the tenant.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional network query\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fixedIP\": {\n \"description\": \"A fixed IPv4 address for the NIC.\",\n \"type\": \"string\"\n },\n \"subnets\": {\n \"description\": \"Subnet within a network to use\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the network.\\nIf specified this will not be validated prior to server creation.\\nRequired if `Subnets` specifies a subnet by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"description\": \"Ports to be attached to the server instance. They are created if a port with the given name does not already exist.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"adminStateUp\": {\n \"type\": \"boolean\"\n },\n \"allowedAddressPairs\": {\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity enables or disables the port security when set.\\nWhen not set, it takes the value of the corresponding field at the network level.\",\n \"type\": \"boolean\"\n },\n \"fixedIPs\": {\n \"description\": \"Specify pairs of subnet and/or IP address. These should be subnets of the network with the given NetworkID.\",\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"Subnet is an openstack subnet query that will return the id of a subnet to create\\nthe fixed IP of a port in. This query must not return more than one subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostId\": {\n \"description\": \"The ID of the host where the port is allocated\",\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n },\n \"nameSuffix\": {\n \"description\": \"Used to make the name of the port unique. If unspecified, instead the 0-based index of the port in the list is used.\",\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Network is a query for an openstack network that the port will be created or discovered on.\\nThis will fail if the query returns more than one network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"profile\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A dictionary that enables the application running on the specified\\nhost to pass and receive virtual network interface (VIF) port-specific\\ninformation to the plug-in.\",\n \"type\": \"object\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"securityGroupFilters\": {\n \"description\": \"The names, uuids, filters or any combination these of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"securityGroups\": {\n \"description\": \"The uuids of the security groups to assign to the instance\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"Tags applied to the port (and corresponding trunk, if a trunk is configured.)\\nThese tags are applied in addition to the instance's tags, which will also be applied to the port.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"trunk\": {\n \"description\": \"Enables and disables trunk at port level. If not provided, openStackMachine.Spec.Trunk is inherited.\",\n \"type\": \"boolean\"\n },\n \"vnicType\": {\n \"description\": \"The virtual network interface card (vNIC) type that is bound to the neutron port.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"providerID\": {\n \"description\": \"ProviderID is the unique identifier as specified by the cloud provider.\",\n \"type\": \"string\"\n },\n \"rootVolume\": {\n \"description\": \"The volume metadata to boot from\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"diskSize\": {\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"securityGroups\": {\n \"description\": \"The names of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serverGroupID\": {\n \"description\": \"The server group to assign the machine to\",\n \"type\": \"string\"\n },\n \"serverMetadata\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Metadata mapping. Allows you to create a map of key value pairs to add to the server instance.\",\n \"type\": \"object\"\n },\n \"sshKeyName\": {\n \"description\": \"The ssh key to inject in the instance\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"UUID, IP address of a port from this subnet will be marked as AccessIPv4 on the created compute instance\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Machine tags\\nRequires Nova api 2.52 minimum!\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"trunk\": {\n \"description\": \"Whether the server instance is created on a trunk port or not.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"flavor\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"controlPlaneAvailabilityZones\": {\n \"description\": \"ControlPlaneAvailabilityZones is the az to deploy control plane to\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"controlPlaneEndpoint\": {\n \"description\": \"ControlPlaneEndpoint represents the endpoint used to communicate with the control plane.\",\n \"properties\": {\n \"host\": {\n \"description\": \"The hostname on which the API server is serving.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port on which the API server is serving.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"host\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"disableAPIServerFloatingIP\": {\n \"description\": \"DisableAPIServerFloatingIP determines whether or not to attempt to attach a floating\\nIP to the API server. This allows for the creation of clusters when attaching a floating\\nIP to the API server (and hence, in many cases, exposing the API server to the internet)\\nis not possible or desirable, e.g. if using a shared VLAN for communication between\\nmanagement and workload clusters or when the management cluster is inside the\\nproject network.\\nThis option requires that the API server use a VIP on the cluster network so that the\\nunderlying machines can change without changing ControlPlaneEndpoint.Host.\\nWhen using a managed load balancer, this VIP will be managed automatically.\\nIf not using a managed load balancer, cluster configuration will fail without additional\\nconfiguration to manage the VIP on the control plane machines, which falls outside of\\nthe scope of this controller.\",\n \"type\": \"boolean\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity disables the port security of the network created for the\\nKubernetes cluster, which also disables SecurityGroups\",\n \"type\": \"boolean\"\n },\n \"dnsNameservers\": {\n \"description\": \"DNSNameservers is the list of nameservers for OpenStack Subnet being created.\\nSet this value when you need create a new network/subnet while the access\\nthrough DNS is required.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"externalNetworkId\": {\n \"description\": \"ExternalNetworkID is the ID of an external OpenStack Network. This is necessary\\nto get public internet to the VMs.\",\n \"type\": \"string\"\n },\n \"externalRouterIPs\": {\n \"description\": \"ExternalRouterIPs is an array of externalIPs on the respective subnets.\\nThis is necessary if the router needs a fixed ip in a specific subnet.\",\n \"items\": {\n \"properties\": {\n \"fixedIP\": {\n \"description\": \"The FixedIP in the corresponding subnet\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"The subnet in which the FixedIP is used for the Gateway of this router\",\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"managedSecurityGroups\": {\n \"description\": \"ManagedSecurityGroups determines whether OpenStack security groups for the cluster\\nwill be managed by the OpenStack provider or whether pre-existing security groups will\\nbe specified as part of the configuration.\\nBy default, the managed security groups have rules that allow the Kubelet, etcd, the\\nKubernetes API server and the Calico CNI plugin to function correctly.\",\n \"type\": \"boolean\"\n },\n \"network\": {\n \"description\": \"If NodeCIDR cannot be set this can be used to detect an existing network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeCidr\": {\n \"description\": \"NodeCIDR is the OpenStack Subnet to be created. Cluster actuator will create a\\nnetwork, a subnet with NodeCIDR, and a router connected to this subnet.\\nIf you leave this empty, no network will be created.\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"If NodeCIDR cannot be set this can be used to detect an existing subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Tags for all resources in cluster\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Open Stack Cluster\",\n \"type\": \"object\"\n}", + "version": "infrastructure.cluster.x-k8s.io/v1alpha5" + }, + "configuration": null, + "description": "", + "displayName": "Open Stack Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackClusterTemplate.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackClusterTemplate.json new file mode 100644 index 00000000000..60a99b117ba --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackClusterTemplate.json @@ -0,0 +1,70 @@ +{ + "capabilities": null, + "component": { + "kind": "OpenStackClusterTemplate", + "schema": "{\n \"description\": \"OpenStackClusterTemplate is the Schema for the openstackclustertemplates API.\\n\\n\\nDeprecated: This type will be removed in one of the next releases.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackClusterTemplateSpec defines the desired state of OpenStackClusterTemplate.\",\n \"properties\": {\n \"template\": {\n \"description\": \"OpenStackClusterTemplateResource describes the data needed to create a OpenStackCluster from a template.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackClusterSpec defines the desired state of OpenStackCluster.\",\n \"properties\": {\n \"allowAllInClusterTraffic\": {\n \"description\": \"AllowAllInClusterTraffic is only used when managed security groups are in use.\\nIf set to true, the rules for the managed security groups are configured so that all\\ningress and egress between cluster nodes is permitted, allowing CNIs other than\\nCalico to be used.\",\n \"type\": \"boolean\"\n },\n \"apiServerFixedIP\": {\n \"description\": \"APIServerFixedIP is the fixed IP which will be associated with the API server.\\nIn the case where the API server has a floating IP but not a managed load balancer,\\nthis field is not used.\\nIf a managed load balancer is used and this field is not specified, a fixed IP will\\nbe dynamically allocated for the load balancer.\\nIf a managed load balancer is not used AND the API server floating IP is disabled,\\nthis field MUST be specified and should correspond to a pre-allocated port that\\nholds the fixed IP to be used as a VIP.\",\n \"type\": \"string\"\n },\n \"apiServerFloatingIP\": {\n \"description\": \"APIServerFloatingIP is the floatingIP which will be associated with the API server.\\nThe floatingIP will be created if it does not already exist.\\nIf not specified, a new floatingIP is allocated.\\nThis field is not used if DisableAPIServerFloatingIP is set to true.\",\n \"type\": \"string\"\n },\n \"apiServerLoadBalancer\": {\n \"description\": \"APIServerLoadBalancer configures the optional LoadBalancer for the APIServer.\\nIt must be activated by setting `enabled: true`.\",\n \"properties\": {\n \"additionalPorts\": {\n \"description\": \"AdditionalPorts adds additional tcp ports to the load balancer.\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"allowedCidrs\": {\n \"description\": \"AllowedCIDRs restrict access to all API-Server listeners to the given address CIDRs.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enabled\": {\n \"description\": \"Enabled defines whether a load balancer should be created.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"apiServerPort\": {\n \"description\": \"APIServerPort is the port on which the listener on the APIServer\\nwill be created\",\n \"type\": \"integer\"\n },\n \"bastion\": {\n \"description\": \"Bastion is the OpenStack instance to login the nodes\\n\\n\\nAs a rolling update is not ideal during a bastion host session, we\\nprevent changes to a running bastion configuration. Set `enabled: false` to\\nmake changes.\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"instance\": {\n \"description\": \"Instance for the bastion itself\",\n \"properties\": {\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"configDrive\": {\n \"description\": \"Config Drive support\",\n \"type\": \"boolean\"\n },\n \"flavor\": {\n \"description\": \"The flavor reference for the flavor for your server instance.\",\n \"type\": \"string\"\n },\n \"floatingIP\": {\n \"description\": \"The floatingIP which will be associated to the machine, only used for master.\\nThe floatingIP should have been created and haven't been associated.\",\n \"type\": \"string\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"image\": {\n \"description\": \"The name of the image to use for your server instance.\\nIf the RootVolume is specified, this will be ignored and use rootVolume directly.\",\n \"type\": \"string\"\n },\n \"imageUUID\": {\n \"description\": \"The uuid of the image to use for your server instance.\\nif it's empty, Image name will be used\",\n \"type\": \"string\"\n },\n \"instanceID\": {\n \"description\": \"InstanceID is the OpenStack instance ID for this machine.\",\n \"type\": \"string\"\n },\n \"networks\": {\n \"description\": \"A networks object. Required parameter when there are multiple networks defined for the tenant.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional network query\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fixedIP\": {\n \"description\": \"A fixed IPv4 address for the NIC.\",\n \"type\": \"string\"\n },\n \"subnets\": {\n \"description\": \"Subnet within a network to use\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the network.\\nIf specified this will not be validated prior to server creation.\\nRequired if `Subnets` specifies a subnet by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"description\": \"Ports to be attached to the server instance. They are created if a port with the given name does not already exist.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"adminStateUp\": {\n \"type\": \"boolean\"\n },\n \"allowedAddressPairs\": {\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity enables or disables the port security when set.\\nWhen not set, it takes the value of the corresponding field at the network level.\",\n \"type\": \"boolean\"\n },\n \"fixedIPs\": {\n \"description\": \"Specify pairs of subnet and/or IP address. These should be subnets of the network with the given NetworkID.\",\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"Subnet is an openstack subnet query that will return the id of a subnet to create\\nthe fixed IP of a port in. This query must not return more than one subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostId\": {\n \"description\": \"The ID of the host where the port is allocated\",\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n },\n \"nameSuffix\": {\n \"description\": \"Used to make the name of the port unique. If unspecified, instead the 0-based index of the port in the list is used.\",\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Network is a query for an openstack network that the port will be created or discovered on.\\nThis will fail if the query returns more than one network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"profile\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A dictionary that enables the application running on the specified\\nhost to pass and receive virtual network interface (VIF) port-specific\\ninformation to the plug-in.\",\n \"type\": \"object\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"securityGroupFilters\": {\n \"description\": \"The names, uuids, filters or any combination these of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"securityGroups\": {\n \"description\": \"The uuids of the security groups to assign to the instance\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"Tags applied to the port (and corresponding trunk, if a trunk is configured.)\\nThese tags are applied in addition to the instance's tags, which will also be applied to the port.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"trunk\": {\n \"description\": \"Enables and disables trunk at port level. If not provided, openStackMachine.Spec.Trunk is inherited.\",\n \"type\": \"boolean\"\n },\n \"vnicType\": {\n \"description\": \"The virtual network interface card (vNIC) type that is bound to the neutron port.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"providerID\": {\n \"description\": \"ProviderID is the unique identifier as specified by the cloud provider.\",\n \"type\": \"string\"\n },\n \"rootVolume\": {\n \"description\": \"The volume metadata to boot from\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"diskSize\": {\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"securityGroups\": {\n \"description\": \"The names of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serverGroupID\": {\n \"description\": \"The server group to assign the machine to\",\n \"type\": \"string\"\n },\n \"serverMetadata\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Metadata mapping. Allows you to create a map of key value pairs to add to the server instance.\",\n \"type\": \"object\"\n },\n \"sshKeyName\": {\n \"description\": \"The ssh key to inject in the instance\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"UUID, IP address of a port from this subnet will be marked as AccessIPv4 on the created compute instance\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Machine tags\\nRequires Nova api 2.52 minimum!\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"trunk\": {\n \"description\": \"Whether the server instance is created on a trunk port or not.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"flavor\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"controlPlaneAvailabilityZones\": {\n \"description\": \"ControlPlaneAvailabilityZones is the az to deploy control plane to\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"controlPlaneEndpoint\": {\n \"description\": \"ControlPlaneEndpoint represents the endpoint used to communicate with the control plane.\",\n \"properties\": {\n \"host\": {\n \"description\": \"The hostname on which the API server is serving.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port on which the API server is serving.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"host\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"disableAPIServerFloatingIP\": {\n \"description\": \"DisableAPIServerFloatingIP determines whether or not to attempt to attach a floating\\nIP to the API server. This allows for the creation of clusters when attaching a floating\\nIP to the API server (and hence, in many cases, exposing the API server to the internet)\\nis not possible or desirable, e.g. if using a shared VLAN for communication between\\nmanagement and workload clusters or when the management cluster is inside the\\nproject network.\\nThis option requires that the API server use a VIP on the cluster network so that the\\nunderlying machines can change without changing ControlPlaneEndpoint.Host.\\nWhen using a managed load balancer, this VIP will be managed automatically.\\nIf not using a managed load balancer, cluster configuration will fail without additional\\nconfiguration to manage the VIP on the control plane machines, which falls outside of\\nthe scope of this controller.\",\n \"type\": \"boolean\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity disables the port security of the network created for the\\nKubernetes cluster, which also disables SecurityGroups\",\n \"type\": \"boolean\"\n },\n \"dnsNameservers\": {\n \"description\": \"DNSNameservers is the list of nameservers for OpenStack Subnet being created.\\nSet this value when you need create a new network/subnet while the access\\nthrough DNS is required.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"externalNetworkId\": {\n \"description\": \"ExternalNetworkID is the ID of an external OpenStack Network. This is necessary\\nto get public internet to the VMs.\",\n \"type\": \"string\"\n },\n \"externalRouterIPs\": {\n \"description\": \"ExternalRouterIPs is an array of externalIPs on the respective subnets.\\nThis is necessary if the router needs a fixed ip in a specific subnet.\",\n \"items\": {\n \"properties\": {\n \"fixedIP\": {\n \"description\": \"The FixedIP in the corresponding subnet\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"The subnet in which the FixedIP is used for the Gateway of this router\",\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"managedSecurityGroups\": {\n \"description\": \"ManagedSecurityGroups determines whether OpenStack security groups for the cluster\\nwill be managed by the OpenStack provider or whether pre-existing security groups will\\nbe specified as part of the configuration.\\nBy default, the managed security groups have rules that allow the Kubelet, etcd, the\\nKubernetes API server and the Calico CNI plugin to function correctly.\",\n \"type\": \"boolean\"\n },\n \"network\": {\n \"description\": \"If NodeCIDR cannot be set this can be used to detect an existing network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeCidr\": {\n \"description\": \"NodeCIDR is the OpenStack Subnet to be created. Cluster actuator will create a\\nnetwork, a subnet with NodeCIDR, and a router connected to this subnet.\\nIf you leave this empty, no network will be created.\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"If NodeCIDR cannot be set this can be used to detect an existing subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Tags for all resources in cluster\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"template\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Open Stack Cluster Template\",\n \"type\": \"object\"\n}", + "version": "infrastructure.cluster.x-k8s.io/v1alpha5" + }, + "configuration": null, + "description": "", + "displayName": "Open Stack Cluster Template", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackFloatingIPPool.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackFloatingIPPool.json new file mode 100644 index 00000000000..09ebb9f63f7 --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackFloatingIPPool.json @@ -0,0 +1,70 @@ +{ + "capabilities": null, + "component": { + "kind": "OpenStackFloatingIPPool", + "schema": "{\n \"description\": \"OpenStackFloatingIPPool is the Schema for the openstackfloatingippools API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackFloatingIPPoolSpec defines the desired state of OpenStackFloatingIPPool.\",\n \"properties\": {\n \"floatingIPNetwork\": {\n \"description\": \"FloatingIPNetwork is the external network to use for floating ips, if there's only one external network it will be used by default\",\n \"maxProperties\": 1,\n \"minProperties\": 1,\n \"properties\": {\n \"filter\": {\n \"description\": \"Filter specifies a filter to select an OpenStack network. If provided, cannot be empty.\",\n \"minProperties\": 1,\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"description\": \"NotTags is a list of tags to filter by. If specified, resources which\\ncontain all of the given tags will be excluded from the result.\",\n \"items\": {\n \"description\": \"NeutronTag represents a tag on a Neutron resource.\\nIt may not be empty and may not contain commas.\",\n \"minLength\": 1,\n \"pattern\": \"^[^,]+$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"notTagsAny\": {\n \"description\": \"NotTagsAny is a list of tags to filter by. If specified, resources\\nwhich contain any of the given tags will be excluded from the result.\",\n \"items\": {\n \"description\": \"NeutronTag represents a tag on a Neutron resource.\\nIt may not be empty and may not contain commas.\",\n \"minLength\": 1,\n \"pattern\": \"^[^,]+$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"projectID\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Tags is a list of tags to filter by. If specified, the resource must\\nhave all of the tags specified to be included in the result.\",\n \"items\": {\n \"description\": \"NeutronTag represents a tag on a Neutron resource.\\nIt may not be empty and may not contain commas.\",\n \"minLength\": 1,\n \"pattern\": \"^[^,]+$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"tagsAny\": {\n \"description\": \"TagsAny is a list of tags to filter by. If specified, the resource\\nmust have at least one of the tags specified to be included in the\\nresult.\",\n \"items\": {\n \"description\": \"NeutronTag represents a tag on a Neutron resource.\\nIt may not be empty and may not contain commas.\",\n \"minLength\": 1,\n \"pattern\": \"^[^,]+$\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n }\n },\n \"type\": \"object\"\n },\n \"id\": {\n \"description\": \"ID is the ID of the network to use. If ID is provided, the other filters cannot be provided. Must be in UUID format.\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this pool.\",\n \"properties\": {\n \"cloudName\": {\n \"description\": \"CloudName specifies the name of the entry in the clouds.yaml file to use.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of a secret in the same namespace as the resource being provisioned.\\nThe secret must contain a key named `clouds.yaml` which contains an OpenStack clouds.yaml file.\\nThe secret may optionally contain a key named `cacert` containing a PEM-encoded CA certificate.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cloudName\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"maxIPs\": {\n \"description\": \"MaxIPs is the maximum number of floating ips that can be allocated from this pool, if nil there is no limit.\\nIf set, the pool will stop allocating floating ips when it reaches this number of ClaimedIPs.\",\n \"type\": \"integer\"\n },\n \"preAllocatedFloatingIPs\": {\n \"description\": \"PreAllocatedFloatingIPs is a list of floating IPs precreated in OpenStack that should be used by this pool.\\nThese are used before allocating new ones and are not deleted from OpenStack when the pool is deleted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"reclaimPolicy\": {\n \"description\": \"The stratergy to use for reclaiming floating ips when they are released from a machine\",\n \"enum\": [\n \"Retain\",\n \"Delete\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"identityRef\",\n \"reclaimPolicy\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Open Stack Floating IP Pool\",\n \"type\": \"object\"\n}", + "version": "infrastructure.cluster.x-k8s.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Open Stack Floating IP Pool", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachine.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachine.json new file mode 100644 index 00000000000..14c6e40b7d2 --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachine.json @@ -0,0 +1,70 @@ +{ + "capabilities": null, + "component": { + "kind": "OpenStackMachine", + "schema": "{\n \"description\": \"OpenStackMachine is the Schema for the openstackmachines API.\\n\\n\\nDeprecated: This type will be removed in one of the next releases.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackMachineSpec defines the desired state of OpenStackMachine.\",\n \"properties\": {\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"configDrive\": {\n \"description\": \"Config Drive support\",\n \"type\": \"boolean\"\n },\n \"flavor\": {\n \"description\": \"The flavor reference for the flavor for your server instance.\",\n \"type\": \"string\"\n },\n \"floatingIP\": {\n \"description\": \"The floatingIP which will be associated to the machine, only used for master.\\nThe floatingIP should have been created and haven't been associated.\",\n \"type\": \"string\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"image\": {\n \"description\": \"The name of the image to use for your server instance.\\nIf the RootVolume is specified, this will be ignored and use rootVolume directly.\",\n \"type\": \"string\"\n },\n \"imageUUID\": {\n \"description\": \"The uuid of the image to use for your server instance.\\nif it's empty, Image name will be used\",\n \"type\": \"string\"\n },\n \"instanceID\": {\n \"description\": \"InstanceID is the OpenStack instance ID for this machine.\",\n \"type\": \"string\"\n },\n \"networks\": {\n \"description\": \"A networks object. Required parameter when there are multiple networks defined for the tenant.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional network query\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fixedIP\": {\n \"description\": \"A fixed IPv4 address for the NIC.\",\n \"type\": \"string\"\n },\n \"subnets\": {\n \"description\": \"Subnet within a network to use\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the network.\\nIf specified this will not be validated prior to server creation.\\nRequired if `Subnets` specifies a subnet by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"description\": \"Ports to be attached to the server instance. They are created if a port with the given name does not already exist.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"adminStateUp\": {\n \"type\": \"boolean\"\n },\n \"allowedAddressPairs\": {\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity enables or disables the port security when set.\\nWhen not set, it takes the value of the corresponding field at the network level.\",\n \"type\": \"boolean\"\n },\n \"fixedIPs\": {\n \"description\": \"Specify pairs of subnet and/or IP address. These should be subnets of the network with the given NetworkID.\",\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"Subnet is an openstack subnet query that will return the id of a subnet to create\\nthe fixed IP of a port in. This query must not return more than one subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostId\": {\n \"description\": \"The ID of the host where the port is allocated\",\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n },\n \"nameSuffix\": {\n \"description\": \"Used to make the name of the port unique. If unspecified, instead the 0-based index of the port in the list is used.\",\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Network is a query for an openstack network that the port will be created or discovered on.\\nThis will fail if the query returns more than one network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"profile\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A dictionary that enables the application running on the specified\\nhost to pass and receive virtual network interface (VIF) port-specific\\ninformation to the plug-in.\",\n \"type\": \"object\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"securityGroupFilters\": {\n \"description\": \"The names, uuids, filters or any combination these of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"securityGroups\": {\n \"description\": \"The uuids of the security groups to assign to the instance\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"Tags applied to the port (and corresponding trunk, if a trunk is configured.)\\nThese tags are applied in addition to the instance's tags, which will also be applied to the port.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"trunk\": {\n \"description\": \"Enables and disables trunk at port level. If not provided, openStackMachine.Spec.Trunk is inherited.\",\n \"type\": \"boolean\"\n },\n \"vnicType\": {\n \"description\": \"The virtual network interface card (vNIC) type that is bound to the neutron port.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"providerID\": {\n \"description\": \"ProviderID is the unique identifier as specified by the cloud provider.\",\n \"type\": \"string\"\n },\n \"rootVolume\": {\n \"description\": \"The volume metadata to boot from\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"diskSize\": {\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"securityGroups\": {\n \"description\": \"The names of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serverGroupID\": {\n \"description\": \"The server group to assign the machine to\",\n \"type\": \"string\"\n },\n \"serverMetadata\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Metadata mapping. Allows you to create a map of key value pairs to add to the server instance.\",\n \"type\": \"object\"\n },\n \"sshKeyName\": {\n \"description\": \"The ssh key to inject in the instance\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"UUID, IP address of a port from this subnet will be marked as AccessIPv4 on the created compute instance\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Machine tags\\nRequires Nova api 2.52 minimum!\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"trunk\": {\n \"description\": \"Whether the server instance is created on a trunk port or not.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"flavor\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Open Stack Machine\",\n \"type\": \"object\"\n}", + "version": "infrastructure.cluster.x-k8s.io/v1alpha5" + }, + "configuration": null, + "description": "", + "displayName": "Open Stack Machine", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachineTemplate.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachineTemplate.json new file mode 100644 index 00000000000..767d42fd148 --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/components/OpenStackMachineTemplate.json @@ -0,0 +1,70 @@ +{ + "capabilities": null, + "component": { + "kind": "OpenStackMachineTemplate", + "schema": "{\n \"description\": \"OpenStackMachineTemplate is the Schema for the openstackmachinetemplates API.\\n\\n\\nDeprecated: This type will be removed in one of the next releases.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OpenStackMachineTemplateSpec defines the desired state of OpenStackMachineTemplate.\",\n \"properties\": {\n \"template\": {\n \"description\": \"OpenStackMachineTemplateResource describes the data needed to create a OpenStackMachine from a template.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the desired behavior of the machine.\",\n \"properties\": {\n \"cloudName\": {\n \"description\": \"The name of the cloud to use from the clouds secret\",\n \"type\": \"string\"\n },\n \"configDrive\": {\n \"description\": \"Config Drive support\",\n \"type\": \"boolean\"\n },\n \"flavor\": {\n \"description\": \"The flavor reference for the flavor for your server instance.\",\n \"type\": \"string\"\n },\n \"floatingIP\": {\n \"description\": \"The floatingIP which will be associated to the machine, only used for master.\\nThe floatingIP should have been created and haven't been associated.\",\n \"type\": \"string\"\n },\n \"identityRef\": {\n \"description\": \"IdentityRef is a reference to a identity to be used when reconciling this cluster\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the identity. Must be supported by the infrastructure\\nprovider and may be either cluster or namespace-scoped.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the infrastructure identity to be used.\\nMust be either a cluster-scoped resource, or namespaced-scoped\\nresource the same namespace as the resource(s) being provisioned.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"image\": {\n \"description\": \"The name of the image to use for your server instance.\\nIf the RootVolume is specified, this will be ignored and use rootVolume directly.\",\n \"type\": \"string\"\n },\n \"imageUUID\": {\n \"description\": \"The uuid of the image to use for your server instance.\\nif it's empty, Image name will be used\",\n \"type\": \"string\"\n },\n \"instanceID\": {\n \"description\": \"InstanceID is the OpenStack instance ID for this machine.\",\n \"type\": \"string\"\n },\n \"networks\": {\n \"description\": \"A networks object. Required parameter when there are multiple networks defined for the tenant.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional network query\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fixedIP\": {\n \"description\": \"A fixed IPv4 address for the NIC.\",\n \"type\": \"string\"\n },\n \"subnets\": {\n \"description\": \"Subnet within a network to use\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters for optional subnet query\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the subnet.\\nIf specified this will not be validated prior to server creation.\\nIf specified, the enclosing `NetworkParam` must also be specified by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uuid\": {\n \"description\": \"Optional UUID of the network.\\nIf specified this will not be validated prior to server creation.\\nRequired if `Subnets` specifies a subnet by UUID.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"description\": \"Ports to be attached to the server instance. They are created if a port with the given name does not already exist.\\nWhen you do not specify both networks and ports parameters, the server attaches to the only network created for the current tenant.\",\n \"items\": {\n \"properties\": {\n \"adminStateUp\": {\n \"type\": \"boolean\"\n },\n \"allowedAddressPairs\": {\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"disablePortSecurity\": {\n \"description\": \"DisablePortSecurity enables or disables the port security when set.\\nWhen not set, it takes the value of the corresponding field at the network level.\",\n \"type\": \"boolean\"\n },\n \"fixedIPs\": {\n \"description\": \"Specify pairs of subnet and/or IP address. These should be subnets of the network with the given NetworkID.\",\n \"items\": {\n \"properties\": {\n \"ipAddress\": {\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"Subnet is an openstack subnet query that will return the id of a subnet to create\\nthe fixed IP of a port in. This query must not return more than one subnet.\",\n \"properties\": {\n \"cidr\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"gateway_ip\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"ipVersion\": {\n \"type\": \"integer\"\n },\n \"ipv6AddressMode\": {\n \"type\": \"string\"\n },\n \"ipv6RaMode\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"subnet\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostId\": {\n \"description\": \"The ID of the host where the port is allocated\",\n \"type\": \"string\"\n },\n \"macAddress\": {\n \"type\": \"string\"\n },\n \"nameSuffix\": {\n \"description\": \"Used to make the name of the port unique. If unspecified, instead the 0-based index of the port in the list is used.\",\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Network is a query for an openstack network that the port will be created or discovered on.\\nThis will fail if the query returns more than one network.\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"profile\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A dictionary that enables the application running on the specified\\nhost to pass and receive virtual network interface (VIF) port-specific\\ninformation to the plug-in.\",\n \"type\": \"object\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"securityGroupFilters\": {\n \"description\": \"The names, uuids, filters or any combination these of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"securityGroups\": {\n \"description\": \"The uuids of the security groups to assign to the instance\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tags\": {\n \"description\": \"Tags applied to the port (and corresponding trunk, if a trunk is configured.)\\nThese tags are applied in addition to the instance's tags, which will also be applied to the port.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"trunk\": {\n \"description\": \"Enables and disables trunk at port level. If not provided, openStackMachine.Spec.Trunk is inherited.\",\n \"type\": \"boolean\"\n },\n \"vnicType\": {\n \"description\": \"The virtual network interface card (vNIC) type that is bound to the neutron port.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"providerID\": {\n \"description\": \"ProviderID is the unique identifier as specified by the cloud provider.\",\n \"type\": \"string\"\n },\n \"rootVolume\": {\n \"description\": \"The volume metadata to boot from\",\n \"properties\": {\n \"availabilityZone\": {\n \"type\": \"string\"\n },\n \"diskSize\": {\n \"type\": \"integer\"\n },\n \"volumeType\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"securityGroups\": {\n \"description\": \"The names of the security groups to assign to the instance\",\n \"items\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filters used to query security groups in openstack\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"limit\": {\n \"type\": \"integer\"\n },\n \"marker\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"notTags\": {\n \"type\": \"string\"\n },\n \"notTagsAny\": {\n \"type\": \"string\"\n },\n \"projectId\": {\n \"type\": \"string\"\n },\n \"sortDir\": {\n \"type\": \"string\"\n },\n \"sortKey\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"type\": \"string\"\n },\n \"tagsAny\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Security Group name\",\n \"type\": \"string\"\n },\n \"uuid\": {\n \"description\": \"Security Group UID\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serverGroupID\": {\n \"description\": \"The server group to assign the machine to\",\n \"type\": \"string\"\n },\n \"serverMetadata\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Metadata mapping. Allows you to create a map of key value pairs to add to the server instance.\",\n \"type\": \"object\"\n },\n \"sshKeyName\": {\n \"description\": \"The ssh key to inject in the instance\",\n \"type\": \"string\"\n },\n \"subnet\": {\n \"description\": \"UUID, IP address of a port from this subnet will be marked as AccessIPv4 on the created compute instance\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Machine tags\\nRequires Nova api 2.52 minimum!\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"trunk\": {\n \"description\": \"Whether the server instance is created on a trunk port or not.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"flavor\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"template\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Open Stack Machine Template\",\n \"type\": \"object\"\n}", + "version": "infrastructure.cluster.x-k8s.io/v1alpha5" + }, + "configuration": null, + "description": "", + "displayName": "Open Stack Machine Template", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "source_uri": "git://github.com/kubernetes-sigs/cluster-api-provider-openstack/main/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "svgColor": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"800px\" height=\"800px\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg\u003e\n \u003cpath d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/model.json b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/model.json new file mode 100644 index 00000000000..7b5cd8ac133 --- /dev/null +++ b/server/meshmodel/cluster-api-provider-openstack/v0.10.5/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "OpenStack (Cluster API Provider)", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#DA1A32", + "shape": "round-rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#DA1A32\"\u003e\n\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 -2.5 256 256\" version=\"1.1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"xMidYMid\"\u003e\n \u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\n \u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M57.8196917,170.722795 L57.8196917,179.878808 C57.8196917,186.98261 63.5764029,192.739322 70.6802055,192.739322 L70.6802055,192.739322 L185.330319,192.739322 C192.434121,192.739322 198.190832,186.98261 198.190832,179.878808 L198.190832,179.878808 L198.190832,170.722795 L256,170.722795 L256,226.77443 C256,239.855951 245.296937,250.559013 232.215416,250.559013 L232.215416,250.559013 L23.7845838,250.559013 C10.7030627,250.559013 0,239.855951 0,226.77443 L0,226.77443 L0,170.722795 L57.8196917,170.722795 Z M57.8091675,96.3696608 L57.8091675,154.178828 L0,154.178828 L0,96.3696608 L57.8091675,96.3696608 Z M256,96.3696608 L256,154.178828 L198.190832,154.178828 L198.190832,96.3696608 L256,96.3696608 Z M232.215416,0 C245.296937,0 256,10.7030627 256,23.7951079 L256,23.7951079 L256,79.8362179 L198.190832,79.8362179 L198.190832,70.6802055 C198.190832,63.5764029 192.434121,57.8196917 185.330319,57.8196917 L185.330319,57.8196917 L70.6696814,57.8196917 C63.5658787,57.8196917 57.8091675,63.5764029 57.8091675,70.6802055 L57.8091675,70.6802055 L57.8091675,79.8362179 L0,79.8362179 L0,23.7845838 C0,10.7030627 10.7030627,0 23.7845838,0 L23.7845838,0 Z\" fill=\"#fff\"\u003e\n\u003c/path\u003e\n \u003c/g\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "v0.10.5" + }, + "name": "cluster-api-provider-openstack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Orchestration \u0026 Management", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/APIGateway.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/APIGateway.json new file mode 100644 index 00000000000..22561892dbb --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/APIGateway.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "APIGateway", + "schema": "{\n \"description\": \"APIGateway is the Schema for the API Gateway\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"gatewayClassName\": {\n \"description\": \"GatewayClassName is the name of the GatewayClass used by the APIGateway\",\n \"type\": \"string\"\n },\n \"listeners\": {\n \"items\": {\n \"properties\": {\n \"hostname\": {\n \"description\": \"Hostname is the host name that a listener should be bound to, if\\nunspecified, the listener accepts requests for all hostnames.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the listener in a given gateway. This must be\\nunique within a gateway.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"description\": \"Protocol is the protocol that a listener should use, it must\\neither be \\\"http\\\" or \\\"tcp\\\"\",\n \"type\": \"string\"\n },\n \"tls\": {\n \"description\": \"TLS is the TLS settings for the listener.\",\n \"properties\": {\n \"certificates\": {\n \"description\": \"Certificates is a set of references to certificates\\nthat a gateway listener uses for TLS termination.\",\n \"items\": {\n \"description\": \"Reference identifies which resource a condition relates to, when it is not\\nthe core resource itself.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tlsParameters\": {\n \"description\": \"TLSParameters contains optional configuration for running TLS termination.\",\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"enum\": [\n \"TLS_CIPHER_SUITE_ECDHE_ECDSA_AES128_GCM_SHA256\",\n \"TLS_CIPHER_SUITE_AES256_SHA\",\n \"TLS_CIPHER_SUITE_ECDHE_ECDSA_CHACHA20_POLY1305\",\n \"TLS_CIPHER_SUITE_ECDHE_RSA_AES128_GCM_SHA256\",\n \"TLS_CIPHER_SUITE_ECDHE_RSA_CHACHA20_POLY1305\",\n \"TLS_CIPHER_SUITE_ECDHE_ECDSA_AES128_SHA\",\n \"TLS_CIPHER_SUITE_ECDHE_RSA_AES128_SHA\",\n \"TLS_CIPHER_SUITE_AES128_GCM_SHA256\",\n \"TLS_CIPHER_SUITE_AES128_SHA\",\n \"TLS_CIPHER_SUITE_ECDHE_ECDSA_AES256_GCM_SHA384\",\n \"TLS_CIPHER_SUITE_ECDHE_RSA_AES256_GCM_SHA384\",\n \"TLS_CIPHER_SUITE_ECDHE_ECDSA_AES256_SHA\",\n \"TLS_CIPHER_SUITE_ECDHE_RSA_AES256_SHA\",\n \"TLS_CIPHER_SUITE_AES256_GCM_SHA384\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxVersion\": {\n \"enum\": [\n \"TLS_VERSION_AUTO\",\n \"TLS_VERSION_1_0\",\n \"TLS_VERSION_1_1\",\n \"TLS_VERSION_1_2\",\n \"TLS_VERSION_1_3\",\n \"TLS_VERSION_INVALID\",\n \"TLS_VERSION_UNSPECIFIED\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"minVersion\": {\n \"enum\": [\n \"TLS_VERSION_AUTO\",\n \"TLS_VERSION_1_0\",\n \"TLS_VERSION_1_1\",\n \"TLS_VERSION_1_2\",\n \"TLS_VERSION_1_3\",\n \"TLS_VERSION_INVALID\",\n \"TLS_VERSION_UNSPECIFIED\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"API Gateway\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "API Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ControlPlaneRequestLimit.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ControlPlaneRequestLimit.json new file mode 100644 index 00000000000..582c350e119 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ControlPlaneRequestLimit.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ControlPlaneRequestLimit", + "schema": "{\n \"description\": \"ControlPlaneRequestLimit is the Schema for the controlplanerequestlimits API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ControlPlaneRequestLimitSpec defines the desired state of ControlPlaneRequestLimit.\",\n \"properties\": {\n \"acl\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"catalog\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"configEntry\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"connectCA\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"coordinate\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"discoveryChain\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"health\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"intention\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"kv\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"type\": \"string\"\n },\n \"preparedQuery\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"readRate\": {\n \"type\": \"number\"\n },\n \"session\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"tenancy\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"txn\": {\n \"properties\": {\n \"readRate\": {\n \"type\": \"number\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"writeRate\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Control Plane Request Limit\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Control Plane Request Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ExportedServices.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ExportedServices.json new file mode 100644 index 00000000000..8d3fb85212a --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ExportedServices.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ExportedServices", + "schema": "{\n \"description\": \"ExportedServices is the Schema for the exportedservices API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ExportedServicesSpec defines the desired state of ExportedServices.\",\n \"properties\": {\n \"services\": {\n \"description\": \"Services is a list of services to be exported and the list of partitions\\nto expose them to.\",\n \"items\": {\n \"description\": \"ExportedService manages the exporting of a service in the local partition to\\nother partitions.\",\n \"properties\": {\n \"consumers\": {\n \"description\": \"Consumers is a list of downstream consumers of the service to be exported.\",\n \"items\": {\n \"description\": \"ServiceConsumer represents a downstream consumer of the service to be exported.\",\n \"properties\": {\n \"partition\": {\n \"description\": \"Partition is the admin partition to export the service to.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"description\": \"Peer is the name of the peer to export the service to.\",\n \"type\": \"string\"\n },\n \"samenessGroup\": {\n \"description\": \"SamenessGroup is the name of the sameness group to export the service to.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the service to be exported.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace to export the service from.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Exported Services\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Exported Services", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/GRPCRoute.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GRPCRoute.json new file mode 100644 index 00000000000..d2226e48a3a --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GRPCRoute.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "GRPCRoute", + "schema": "{\n \"description\": \"GRPCRoute is the Schema for the GRPC Route API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"NOTE: this should align to the GAMMA/gateway-api version, or at least be\\neasily translatable.\\n\\n\\nhttps://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io/v1alpha2.GRPCRoute\\n\\n\\nThis is a Resource type.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames are the hostnames for which this GRPCRoute should respond to requests.\\n\\n\\nThis is only valid for north/south.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parentRefs\": {\n \"description\": \"ParentRefs references the resources (usually Services) that a Route wants\\nto be attached to.\\n\\n\\nIt is invalid to reference an identical parent more than once. It is valid\\nto reference multiple distinct sections within the same parent resource.\",\n \"items\": {\n \"description\": \"NOTE: roughly equivalent to structs.ResourceReference\",\n \"properties\": {\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply all.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\\nFor north/south it should point to a Gateway.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"rules\": {\n \"description\": \"Rules are a list of GRPC matchers, filters and actions.\",\n \"items\": {\n \"properties\": {\n \"backendRefs\": {\n \"description\": \"BackendRefs defines the backend(s) where matching requests should be sent.\\nFailure behavior here depends on how many BackendRefs are specified and\\nhow many are invalid.\\n\\n\\nIf all entries in BackendRefs are invalid, and there are also no filters\\nspecified in this route rule, all traffic which matches this rule MUST\\nreceive a 500 status code.\\n\\n\\nSee the GRPCBackendRef definition for the rules about what makes a single\\nGRPCBackendRef invalid.\\n\\n\\nWhen a GRPCBackendRef is invalid, 500 status codes MUST be returned for\\nrequests that would have otherwise been routed to an invalid backend. If\\nmultiple backends are specified, and some are invalid, the proportion of\\nrequests that would otherwise have been routed to an invalid backend MUST\\nreceive a 500 status code.\\n\\n\\nFor example, if two backends are specified with equal weights, and one is\\ninvalid, 50 percent of traffic must receive a 500. Implementations may\\nchoose how that 50 percent is determined.\",\n \"items\": {\n \"properties\": {\n \"backendRef\": {\n \"properties\": {\n \"datacenter\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply using the same value as the parent ref.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"filters\": {\n \"description\": \"Filters defined at this level should be executed if and only if the\\nrequest is being forwarded to the backend defined here.\",\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"RequestHeaderModifier defines a schema for a filter that modifies request\\nheaders.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"ResponseHeaderModifier defines a schema for a filter that modifies\\nresponse headers.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"urlRewrite\": {\n \"description\": \"URLRewrite defines a schema for a filter that modifies a request during\\nforwarding.\",\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"weight\": {\n \"description\": \"Weight specifies the proportion of requests forwarded to the referenced\\nbackend. This is computed as weight/(sum of all weights in this\\nBackendRefs list). For non-zero values, there may be some epsilon from the\\nexact proportion defined here depending on the precision an implementation\\nsupports. Weight is not a percentage and the sum of weights does not need\\nto equal 100.\\n\\n\\nIf only one backend is specified and it has a weight greater than 0, 100%\\nof the traffic is forwarded to that backend. If weight is set to 0, no\\ntraffic should be forwarded for this entry. If unspecified, weight defaults\\nto 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"RequestHeaderModifier defines a schema for a filter that modifies request\\nheaders.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"ResponseHeaderModifier defines a schema for a filter that modifies\\nresponse headers.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"urlRewrite\": {\n \"description\": \"URLRewrite defines a schema for a filter that modifies a request during\\nforwarding.\",\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matches\": {\n \"items\": {\n \"properties\": {\n \"headers\": {\n \"description\": \"Headers specifies gRPC request header matchers. Multiple match values are\\nANDed together, meaning, a request MUST match all the specified headers to\\nselect the route.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"HeaderMatchType specifies the semantics of how HTTP header values should be\\ncompared. Valid HeaderMatchType values, along with their conformance levels,\\nare:\\n\\n\\nNote that values may be added to this enum, implementations must ensure that\\nunknown values will not cause a crash.\\n\\n\\nUnknown values here must result in the implementation setting the Accepted\\nCondition for the Route to status: False, with a Reason of UnsupportedValue.\",\n \"enum\": [\n \"HEADER_MATCH_TYPE_UNSPECIFIED\",\n \"HEADER_MATCH_TYPE_EXACT\",\n \"HEADER_MATCH_TYPE_REGEX\",\n \"HEADER_MATCH_TYPE_PRESENT\",\n \"HEADER_MATCH_TYPE_PREFIX\",\n \"HEADER_MATCH_TYPE_SUFFIX\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"method\": {\n \"description\": \"Method specifies a gRPC request service/method matcher. If this field is\\nnot specified, all services and methods will match.\",\n \"properties\": {\n \"method\": {\n \"description\": \"Value of the method to match against. If left empty or omitted, will match\\nall services.\\n\\n\\nAt least one of Service and Method MUST be a non-empty string.}\",\n \"type\": \"string\"\n },\n \"service\": {\n \"description\": \"Value of the service to match against. If left empty or omitted, will\\nmatch any service.\\n\\n\\nAt least one of Service and Method MUST be a non-empty string.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type specifies how to match against the service and/or method. Support:\\nCore (Exact with service and method specified)\",\n \"enum\": [\n \"GRPC_METHOD_MATCH_TYPE_UNSPECIFIED\",\n \"GRPC_METHOD_MATCH_TYPE_EXACT\",\n \"GRPC_METHOD_MATCH_TYPE_REGEX\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retries\": {\n \"properties\": {\n \"number\": {\n \"description\": \"Number is the number of times to retry the request when a retryable\\nresult occurs.\",\n \"properties\": {\n \"value\": {\n \"description\": \"The uint32 value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"onConditions\": {\n \"description\": \"RetryOn allows setting envoy specific conditions when a request should\\nbe automatically retried.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"onConnectFailure\": {\n \"description\": \"RetryOnConnectFailure allows for connection failure errors to trigger a\\nretry.\",\n \"type\": \"boolean\"\n },\n \"onStatusCodes\": {\n \"description\": \"RetryOnStatusCodes is a flat list of http response status codes that are\\neligible for retry. This again should be feasible in any reasonable proxy.\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"timeouts\": {\n \"description\": \"HTTPRouteTimeouts defines timeouts that can be configured for an HTTPRoute\\nor GRPCRoute.\",\n \"properties\": {\n \"idle\": {\n \"description\": \"Idle specifies the total amount of time permitted for the request stream to be idle.\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"request\": {\n \"description\": \"RequestTimeout is the total amount of time permitted for the entire\\ndownstream request (and retries) to be processed.\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"GRPC Route\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "GRPC Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClass.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClass.json new file mode 100644 index 00000000000..74abf777caa --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClass.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "GatewayClass", + "schema": "{\n \"description\": \"GatewayClass is the Schema for the Gateway Class API\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"controllerName\": {\n \"description\": \"ControllerName is the name of the Kubernetes controller\\nthat manages Gateways of this class\",\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Description of GatewayClass\",\n \"type\": \"string\"\n },\n \"parametersRef\": {\n \"description\": \"ParametersRef refers to a resource responsible for configuring\\nthe behavior of the GatewayClass.\",\n \"properties\": {\n \"group\": {\n \"description\": \"The Kubernetes Group that the referred object belongs to\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"The Kubernetes Kind that the referred object is\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The Name of the referred object\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"The kubernetes namespace that the referred object is in\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"controllerName\",\n \"parametersRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Gateway Class\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "Gateway Class", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClassConfig.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClassConfig.json new file mode 100644 index 00000000000..b3a4d5c1889 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayClassConfig.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "GatewayClassConfig", + "schema": "{\n \"description\": \"GatewayClassConfig defines the values that may be set on a GatewayClass for Consul API Gateway.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec defines the desired state of GatewayClassConfig.\",\n \"properties\": {\n \"copyAnnotations\": {\n \"description\": \"Annotation Information to copy to services or deployments\",\n \"properties\": {\n \"service\": {\n \"description\": \"List of annotations to copy to the gateway service.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"deployment\": {\n \"description\": \"Deployment defines the deployment configuration for the gateway.\",\n \"properties\": {\n \"defaultInstances\": {\n \"default\": 1,\n \"description\": \"Number of gateway instances that should be deployed by default\",\n \"format\": \"int32\",\n \"maximum\": 8,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"maxInstances\": {\n \"default\": 8,\n \"description\": \"Max allowed number of gateway instances\",\n \"format\": \"int32\",\n \"maximum\": 8,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"minInstances\": {\n \"default\": 1,\n \"description\": \"Minimum allowed number of gateway instances\",\n \"format\": \"int32\",\n \"maximum\": 8,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources defines the resource requirements for the gateway.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mapPrivilegedContainerPorts\": {\n \"description\": \"The value to add to privileged ports ( ports \\u003c 1024) for gateway containers\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"metrics\": {\n \"description\": \"Metrics defines how to configure the metrics for a gateway.\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Enable metrics for this class of gateways. If unspecified, will inherit\\nbehavior from the global Helm configuration.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"The path used for metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port used for metrics.\",\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 1024,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node.\\nSelector which must match a node's labels for the pod to be scheduled on that node.\\nMore info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\"\n },\n \"openshiftSCCName\": {\n \"description\": \"The name of the OpenShift SecurityContextConstraints resource for this gateway class to use.\",\n \"type\": \"string\"\n },\n \"podSecurityPolicy\": {\n \"description\": \"The name of an existing Kubernetes PodSecurityPolicy to bind to the managed ServiceAccount if ACLs are managed.\",\n \"type\": \"string\"\n },\n \"serviceType\": {\n \"description\": \"Service Type string describes ingress methods for a service\",\n \"enum\": [\n \"ClusterIP\",\n \"NodePort\",\n \"LoadBalancer\"\n ],\n \"type\": \"string\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations allow the scheduler to schedule nodes with matching taints.\\nMore Info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Gateway Class Config\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Gateway Class Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayPolicy.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayPolicy.json new file mode 100644 index 00000000000..5d13db9988f --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/GatewayPolicy.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "GatewayPolicy", + "schema": "{\n \"description\": \"GatewayPolicy is the Schema for the gatewaypolicies API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"GatewayPolicySpec defines the desired state of GatewayPolicy.\",\n \"properties\": {\n \"default\": {\n \"properties\": {\n \"jwt\": {\n \"description\": \"GatewayJWTRequirement holds the list of JWT providers to be verified against.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Providers is a list of providers to consider when verifying a JWT.\",\n \"items\": {\n \"description\": \"GatewayJWTProvider holds the provider and claim verification information.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the JWT provider. There MUST be a corresponding\\n\\\"jwt-provider\\\" config entry with this name.\",\n \"type\": \"string\"\n },\n \"verifyClaims\": {\n \"description\": \"VerifyClaims is a list of additional claims to verify in a JWT's payload.\",\n \"items\": {\n \"description\": \"GatewayJWTClaimVerification holds the actual claim information to be verified.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to the claim in the token JSON.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"value\": {\n \"description\": \"Value is the expected value at the given path:\\n- If the type at the path is a list then we verify\\n that this value is contained in the list.\\n\\n\\n- If the type at the path is a string then we verify\\n that this value matches.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"providers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"override\": {\n \"properties\": {\n \"jwt\": {\n \"description\": \"GatewayJWTRequirement holds the list of JWT providers to be verified against.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Providers is a list of providers to consider when verifying a JWT.\",\n \"items\": {\n \"description\": \"GatewayJWTProvider holds the provider and claim verification information.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the JWT provider. There MUST be a corresponding\\n\\\"jwt-provider\\\" config entry with this name.\",\n \"type\": \"string\"\n },\n \"verifyClaims\": {\n \"description\": \"VerifyClaims is a list of additional claims to verify in a JWT's payload.\",\n \"items\": {\n \"description\": \"GatewayJWTClaimVerification holds the actual claim information to be verified.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to the claim in the token JSON.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"value\": {\n \"description\": \"Value is the expected value at the given path:\\n- If the type at the path is a list then we verify\\n that this value is contained in the list.\\n\\n\\n- If the type at the path is a string then we verify\\n that this value matches.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"providers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef identifies an API object to apply policy to.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group is the group of the target resource.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is kind of the target resource.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the target resource.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of the referent. When unspecified, the local\\nnamespace is inferred. Even when policy targets a resource in a different\\nnamespace, it may only apply to traffic originating from the same\\nnamespace as the policy.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sectionName\": {\n \"description\": \"SectionName refers to the listener targeted by this policy.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Gateway Policy\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Gateway Policy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/HTTPRoute.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/HTTPRoute.json new file mode 100644 index 00000000000..d73d8985bbc --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/HTTPRoute.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "HTTPRoute", + "schema": "{\n \"description\": \"HTTPRoute is the Schema for the HTTP Route API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"NOTE: this should align to the GAMMA/gateway-api version, or at least be\\neasily translatable.\\n\\n\\nhttps://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io/v1alpha2.HTTPRoute\\n\\n\\nThis is a Resource type.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames are the hostnames for which this HTTPRoute should respond to requests.\\n\\n\\nThis is only valid for north/south.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parentRefs\": {\n \"description\": \"ParentRefs references the resources (usually Services) that a Route wants\\nto be attached to.\\n\\n\\nIt is invalid to reference an identical parent more than once. It is valid\\nto reference multiple distinct sections within the same parent resource.\",\n \"items\": {\n \"description\": \"NOTE: roughly equivalent to structs.ResourceReference\",\n \"properties\": {\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply all.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\\nFor north/south it should point to a Gateway.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"rules\": {\n \"description\": \"Rules are a list of HTTP-based routing rules that this route should\\nuse for constructing a routing table.\",\n \"items\": {\n \"description\": \"HTTPRouteRule specifies the routing rules used to determine what upstream\\nservice an HTTP request is routed to.\",\n \"properties\": {\n \"backendRefs\": {\n \"description\": \"BackendRefs defines the backend(s) where matching requests should be sent.\\n\\n\\nFailure behavior here depends on how many BackendRefs are specified and\\nhow many are invalid.\\n\\n\\nIf all entries in BackendRefs are invalid, and there are also no filters\\nspecified in this route rule, all traffic which matches this rule MUST\\nreceive a 500 status code.\\n\\n\\nSee the HTTPBackendRef definition for the rules about what makes a single\\nHTTPBackendRef invalid.\\n\\n\\nWhen a HTTPBackendRef is invalid, 500 status codes MUST be returned for\\nrequests that would have otherwise been routed to an invalid backend. If\\nmultiple backends are specified, and some are invalid, the proportion of\\nrequests that would otherwise have been routed to an invalid backend MUST\\nreceive a 500 status code.\\n\\n\\nFor example, if two backends are specified with equal weights, and one is\\ninvalid, 50 percent of traffic must receive a 500. Implementations may\\nchoose how that 50 percent is determined.\",\n \"items\": {\n \"properties\": {\n \"backendRef\": {\n \"properties\": {\n \"datacenter\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply using the same value as the parent ref.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"filters\": {\n \"description\": \"Filters defined at this level should be executed if and only if the\\nrequest is being forwarded to the backend defined here.\",\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"RequestHeaderModifier defines a schema for a filter that modifies request\\nheaders.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"ResponseHeaderModifier defines a schema for a filter that modifies\\nresponse headers.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"urlRewrite\": {\n \"description\": \"URLRewrite defines a schema for a filter that modifies a request during\\nforwarding.\",\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"weight\": {\n \"description\": \"Weight specifies the proportion of requests forwarded to the referenced\\nbackend. This is computed as weight/(sum of all weights in this\\nBackendRefs list). For non-zero values, there may be some epsilon from the\\nexact proportion defined here depending on the precision an implementation\\nsupports. Weight is not a percentage and the sum of weights does not need\\nto equal 100.\\n\\n\\nIf only one backend is specified and it has a weight greater than 0, 100%\\nof the traffic is forwarded to that backend. If weight is set to 0, no\\ntraffic should be forwarded for this entry. If unspecified, weight defaults\\nto 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"RequestHeaderModifier defines a schema for a filter that modifies request\\nheaders.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"ResponseHeaderModifier defines a schema for a filter that modifies\\nresponse headers.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Add adds the given header(s) (name, value) to the request before the\\naction. It appends to any existing values associated with the header name.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remove\": {\n \"description\": \"Remove the given header(s) from the HTTP request before the action. The\\nvalue of Remove is a list of HTTP header names. Note that the header names\\nare case-insensitive (see\\nhttps://datatracker.ietf.org/doc/html/rfc2616#section-4.2).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"description\": \"Set overwrites the request with the given header (name, value) before the\\naction.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"urlRewrite\": {\n \"description\": \"URLRewrite defines a schema for a filter that modifies a request during\\nforwarding.\",\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matches\": {\n \"items\": {\n \"properties\": {\n \"headers\": {\n \"description\": \"Headers specifies HTTP request header matchers. Multiple match values are\\nANDed together, meaning, a request must match all the specified headers to\\nselect the route.\",\n \"items\": {\n \"properties\": {\n \"invert\": {\n \"description\": \"NOTE: not in gamma; service-router compat\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name matching MUST be\\ncase insensitive. (See https://tools.ietf.org/html/rfc7230#section-3.2).\\n\\n\\nIf multiple entries specify equivalent header names, only the first entry\\nwith an equivalent name MUST be considered for a match. Subsequent entries\\nwith an equivalent header name MUST be ignored. Due to the\\ncase-insensitivity of header names, “foo” and “Foo” are considered\\nequivalent.\\n\\n\\nWhen a header is repeated in an HTTP request, it is\\nimplementation-specific behavior as to how this is represented. Generally,\\nproxies should follow the guidance from the RFC:\\nhttps://www.rfc-editor.org/rfc/rfc7230.html#section-3.2.2 regarding\\nprocessing a repeated header, with special handling for “Set-Cookie”.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"HEADER_MATCH_TYPE_UNSPECIFIED\",\n \"HEADER_MATCH_TYPE_EXACT\",\n \"HEADER_MATCH_TYPE_REGEX\",\n \"HEADER_MATCH_TYPE_PRESENT\",\n \"HEADER_MATCH_TYPE_PREFIX\",\n \"HEADER_MATCH_TYPE_SUFFIX\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"method\": {\n \"description\": \"Method specifies HTTP method matcher. When specified, this route will be\\nmatched only if the request has the specified method.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path specifies a HTTP request path matcher. If this field is not\\nspecified, a default prefix match on the “/” path is provided.\",\n \"properties\": {\n \"type\": {\n \"description\": \"Type specifies how to match against the path Value.\",\n \"enum\": [\n \"PATH_MATCH_TYPE_UNSPECIFIED\",\n \"PATH_MATCH_TYPE_EXACT\",\n \"PATH_MATCH_TYPE_PREFIX\",\n \"PATH_MATCH_TYPE_REGEX\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of the HTTP path to match against.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"queryParams\": {\n \"description\": \"QueryParams specifies HTTP query parameter matchers. Multiple match values\\nare ANDed together, meaning, a request must match all the specified query\\nparameters to select the route.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP query param to be matched. This must be an\\nexact string match. (See\\nhttps://tools.ietf.org/html/rfc7230#section-2.7.3).\\n\\n\\nIf multiple entries specify equivalent query param names, only the first\\nentry with an equivalent name MUST be considered for a match. Subsequent\\nentries with an equivalent query param name MUST be ignored.\\n\\n\\nIf a query param is repeated in an HTTP request, the behavior is purposely\\nleft undefined, since different data planes have different capabilities.\\nHowever, it is recommended that implementations should match against the\\nfirst value of the param if the data plane supports it, as this behavior\\nis expected in other load balancing contexts outside of the Gateway API.\\n\\n\\nUsers SHOULD NOT route traffic based on repeated query params to guard\\nthemselves against potential differences in the implementations.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type specifies how to match against the value of the query parameter.\",\n \"enum\": [\n \"QUERY_PARAM_MATCH_TYPE_UNSPECIFIED\",\n \"QUERY_PARAM_MATCH_TYPE_EXACT\",\n \"QUERY_PARAM_MATCH_TYPE_REGEX\",\n \"QUERY_PARAM_MATCH_TYPE_PRESENT\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP query param to be matched.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retries\": {\n \"properties\": {\n \"number\": {\n \"description\": \"Number is the number of times to retry the request when a retryable\\nresult occurs.\",\n \"properties\": {\n \"value\": {\n \"description\": \"The uint32 value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"onConditions\": {\n \"description\": \"RetryOn allows setting envoy specific conditions when a request should\\nbe automatically retried.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"onConnectFailure\": {\n \"description\": \"RetryOnConnectFailure allows for connection failure errors to trigger a\\nretry.\",\n \"type\": \"boolean\"\n },\n \"onStatusCodes\": {\n \"description\": \"RetryOnStatusCodes is a flat list of http response status codes that are\\neligible for retry. This again should be feasible in any reasonable proxy.\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"timeouts\": {\n \"description\": \"HTTPRouteTimeouts defines timeouts that can be configured for an HTTPRoute\\nor GRPCRoute.\",\n \"properties\": {\n \"idle\": {\n \"description\": \"Idle specifies the total amount of time permitted for the request stream to be idle.\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"request\": {\n \"description\": \"RequestTimeout is the total amount of time permitted for the entire\\ndownstream request (and retries) to be processed.\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"HTTP Route\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "HTTP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/IngressGateway.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/IngressGateway.json new file mode 100644 index 00000000000..2c51e25c950 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/IngressGateway.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "IngressGateway", + "schema": "{\n \"description\": \"IngressGateway is the Schema for the ingressgateways API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"IngressGatewaySpec defines the desired state of IngressGateway.\",\n \"properties\": {\n \"defaults\": {\n \"description\": \"Defaults is default configuration for all upstream services\",\n \"properties\": {\n \"maxConcurrentRequests\": {\n \"description\": \"The maximum number of concurrent requests that\\nwill be allowed at a single point in time. Use this to limit HTTP/2 traffic,\\nsince HTTP/2 has many requests per connection.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections a service instance\\nwill be allowed to establish against the given upstream. Use this to limit\\nHTTP/1.1 traffic, since HTTP/1.1 has a request per connection.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of requests that will be queued\\nwhile waiting for a connection to be established.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"passiveHealthCheck\": {\n \"description\": \"PassiveHealthCheck configuration determines how upstream proxy instances will\\nbe monitored for removal from the load balancing pool.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to the base time\\nmultiplied by the number of times the host has been ejected and is capped by\\nmax_ejection_time (Default 300s). Defaults to 30s.\",\n \"type\": \"string\"\n },\n \"enforcingConsecutive5xx\": {\n \"description\": \"EnforcingConsecutive5xx is the % chance that a host will be actually ejected\\nwhen an outlier status is detected through consecutive 5xx.\\nThis setting can be used to disable ejection or to ramp it up slowly.\\nEx. Setting this to 10 will make it a 10% chance that the host will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"interval\": {\n \"description\": \"Interval between health check analysis sweeps. Each sweep may remove\\nhosts or return hosts to the pool. Ex. setting this to \\\"10s\\\" will set\\nthe interval to 10 seconds.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier detection.\\nDefaults to 10% but will eject at least one host regardless of the value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxFailures\": {\n \"description\": \"MaxFailures is the count of consecutive failures that results in a host\\nbeing removed from the pool.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"listeners\": {\n \"description\": \"Listeners declares what ports the ingress gateway should listen on, and\\nwhat services to associated to those ports.\",\n \"items\": {\n \"description\": \"IngressListener manages the configuration for a listener on a specific port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port declares the port on which the ingress gateway should listen for traffic.\",\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"description\": \"Protocol declares what type of traffic this listener is expected to\\nreceive. Depending on the protocol, a listener might support multiplexing\\nservices over a single port, or additional discovery chain features. The\\ncurrent supported values are: (tcp | http | http2 | grpc).\",\n \"type\": \"string\"\n },\n \"services\": {\n \"description\": \"Services declares the set of services to which the listener forwards\\ntraffic.\\nFor \\\"tcp\\\" protocol listeners, only a single service is allowed.\\nFor \\\"http\\\" listeners, multiple services can be declared.\",\n \"items\": {\n \"description\": \"IngressService manages configuration for services that are exposed to\\ningress traffic.\",\n \"properties\": {\n \"hosts\": {\n \"description\": \"Hosts is a list of hostnames which should be associated to this service on\\nthe defined listener. Only allowed on layer 7 protocols, this will be used\\nto route traffic to the service by matching the Host header of the HTTP\\nrequest.\\n\\n\\nIf a host is provided for a service that also has a wildcard specifier\\ndefined, the host will override the wildcard-specifier-provided\\n\\\"\\u003cservice-name\\u003e.*\\\" domain for that listener.\\n\\n\\nThis cannot be specified when using the wildcard specifier, \\\"*\\\", or when\\nusing a \\\"tcp\\\" listener.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxConcurrentRequests\": {\n \"description\": \"The maximum number of concurrent requests that\\nwill be allowed at a single point in time. Use this to limit HTTP/2 traffic,\\nsince HTTP/2 has many requests per connection.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections a service instance\\nwill be allowed to establish against the given upstream. Use this to limit\\nHTTP/1.1 traffic, since HTTP/1.1 has a request per connection.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of requests that will be queued\\nwhile waiting for a connection to be established.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"Name declares the service to which traffic should be forwarded.\\n\\n\\nThis can either be a specific service, or the wildcard specifier,\\n\\\"*\\\". If the wildcard specifier is provided, the listener must be of \\\"http\\\"\\nprotocol and means that the listener will forward traffic to all services.\\n\\n\\nA name can be specified on multiple listeners, and will be exposed on both\\nof the listeners.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace where the service is located.\\nNamespacing is a Consul Enterprise feature.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the admin-partition where the service is located.\\nPartitioning is a Consul Enterprise feature.\",\n \"type\": \"string\"\n },\n \"passiveHealthCheck\": {\n \"description\": \"PassiveHealthCheck configuration determines how upstream proxy instances will\\nbe monitored for removal from the load balancing pool.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to the base time\\nmultiplied by the number of times the host has been ejected and is capped by\\nmax_ejection_time (Default 300s). Defaults to 30s.\",\n \"type\": \"string\"\n },\n \"enforcingConsecutive5xx\": {\n \"description\": \"EnforcingConsecutive5xx is the % chance that a host will be actually ejected\\nwhen an outlier status is detected through consecutive 5xx.\\nThis setting can be used to disable ejection or to ramp it up slowly.\\nEx. Setting this to 10 will make it a 10% chance that the host will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"interval\": {\n \"description\": \"Interval between health check analysis sweeps. Each sweep may remove\\nhosts or return hosts to the pool. Ex. setting this to \\\"10s\\\" will set\\nthe interval to 10 seconds.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier detection.\\nDefaults to 10% but will eject at least one host regardless of the value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxFailures\": {\n \"description\": \"MaxFailures is the count of consecutive failures that results in a host\\nbeing removed from the pool.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"description\": \"Allow HTTP header manipulation to be configured.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaders\": {\n \"description\": \"HTTPHeaderModifiers is a set of rules for HTTP header modification that\\nshould be performed by proxies as the request passes through them. It can\\noperate on either request or response headers depending on the context in\\nwhich it is used.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"TLS allows specifying some TLS configuration per listener.\",\n \"properties\": {\n \"sds\": {\n \"description\": \"SDS allows configuring TLS certificate from an SDS service.\",\n \"properties\": {\n \"certResource\": {\n \"description\": \"CertResource is the SDS resource name to request when fetching the certificate from the SDS service.\",\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"description\": \"ClusterName is the SDS cluster name to connect to, to retrieve certificates.\\nThis cluster must be specified in the Gateway's bootstrap configuration.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tls\": {\n \"description\": \"TLS config for this listener.\",\n \"properties\": {\n \"cipherSuites\": {\n \"description\": \"Define a subset of cipher suites to restrict\\nOnly applicable to connections negotiated via TLS 1.2 or earlier.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enabled\": {\n \"description\": \"Indicates that TLS should be enabled for this gateway service.\",\n \"type\": \"boolean\"\n },\n \"sds\": {\n \"description\": \"SDS allows configuring TLS certificate from an SDS service.\",\n \"properties\": {\n \"certResource\": {\n \"description\": \"CertResource is the SDS resource name to request when fetching the certificate from the SDS service.\",\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"description\": \"ClusterName is the SDS cluster name to connect to, to retrieve certificates.\\nThis cluster must be specified in the Gateway's bootstrap configuration.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsMaxVersion\": {\n \"description\": \"TLSMaxVersion sets the default maximum TLS version supported. Must be greater than or equal to `TLSMinVersion`.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy will default to TLS 1.3 as a max version for incoming connections.\",\n \"type\": \"string\"\n },\n \"tlsMinVersion\": {\n \"description\": \"TLSMinVersion sets the default minimum TLS version supported.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy v1.22.0 and newer will default to TLS 1.2 as a min version,\\nwhile older releases of Envoy default to TLS 1.0.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"enabled\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tls\": {\n \"description\": \"TLS holds the TLS configuration for this gateway.\",\n \"properties\": {\n \"cipherSuites\": {\n \"description\": \"Define a subset of cipher suites to restrict\\nOnly applicable to connections negotiated via TLS 1.2 or earlier.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"enabled\": {\n \"description\": \"Indicates that TLS should be enabled for this gateway service.\",\n \"type\": \"boolean\"\n },\n \"sds\": {\n \"description\": \"SDS allows configuring TLS certificate from an SDS service.\",\n \"properties\": {\n \"certResource\": {\n \"description\": \"CertResource is the SDS resource name to request when fetching the certificate from the SDS service.\",\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"description\": \"ClusterName is the SDS cluster name to connect to, to retrieve certificates.\\nThis cluster must be specified in the Gateway's bootstrap configuration.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsMaxVersion\": {\n \"description\": \"TLSMaxVersion sets the default maximum TLS version supported. Must be greater than or equal to `TLSMinVersion`.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy will default to TLS 1.3 as a max version for incoming connections.\",\n \"type\": \"string\"\n },\n \"tlsMinVersion\": {\n \"description\": \"TLSMinVersion sets the default minimum TLS version supported.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy v1.22.0 and newer will default to TLS 1.2 as a min version,\\nwhile older releases of Envoy default to TLS 1.0.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"enabled\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Ingress Gateway\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Ingress Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/JWTProvider.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/JWTProvider.json new file mode 100644 index 00000000000..036928e6b64 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/JWTProvider.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "JWTProvider", + "schema": "{\n \"description\": \"JWTProvider is the Schema for the jwtproviders API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"JWTProviderSpec defines the desired state of JWTProvider\",\n \"properties\": {\n \"audiences\": {\n \"description\": \"Audiences is the set of audiences the JWT is allowed to access.\\nIf specified, all JWTs verified with this provider must address\\nat least one of these to be considered valid.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cacheConfig\": {\n \"description\": \"CacheConfig defines configuration for caching the validation\\nresult for previously seen JWTs. Caching results can speed up\\nverification when individual tokens are expected to be handled\\nmultiple times.\",\n \"properties\": {\n \"size\": {\n \"description\": \"Size specifies the maximum number of JWT verification\\nresults to cache.\\n\\n\\nDefaults to 0, meaning that JWT caching is disabled.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"clockSkewSeconds\": {\n \"description\": \"ClockSkewSeconds specifies the maximum allowable time difference\\nfrom clock skew when validating the \\\"exp\\\" (Expiration) and \\\"nbf\\\"\\n(Not Before) claims.\\n\\n\\nDefault value is 30 seconds.\",\n \"type\": \"integer\"\n },\n \"forwarding\": {\n \"description\": \"Forwarding defines rules for forwarding verified JWTs to the backend.\",\n \"properties\": {\n \"headerName\": {\n \"description\": \"HeaderName is a header name to use when forwarding a verified\\nJWT to the backend. The verified JWT could have been extracted\\nfrom any location (query param, header, or cookie).\\n\\n\\nThe header value will be base64-URL-encoded, and will not be\\npadded unless PadForwardPayloadHeader is true.\",\n \"type\": \"string\"\n },\n \"padForwardPayloadHeader\": {\n \"description\": \"PadForwardPayloadHeader determines whether padding should be added\\nto the base64 encoded token forwarded with ForwardPayloadHeader.\\n\\n\\nDefault value is false.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"issuer\": {\n \"description\": \"Issuer is the entity that must have issued the JWT.\\nThis value must match the \\\"iss\\\" claim of the token.\",\n \"type\": \"string\"\n },\n \"jsonWebKeySet\": {\n \"description\": \"JSONWebKeySet defines a JSON Web Key Set, its location on disk, or the\\nmeans with which to fetch a key set from a remote server.\",\n \"properties\": {\n \"local\": {\n \"description\": \"Local specifies a local source for the key set.\",\n \"properties\": {\n \"filename\": {\n \"description\": \"Filename configures a location on disk where the JWKS can be\\nfound. If specified, the file must be present on the disk of ALL\\nproxies with intentions referencing this provider.\",\n \"type\": \"string\"\n },\n \"jwks\": {\n \"description\": \"JWKS contains a base64 encoded JWKS.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"description\": \"Remote specifies how to fetch a key set from a remote server.\",\n \"properties\": {\n \"cacheDuration\": {\n \"description\": \"CacheDuration is the duration after which cached keys\\nshould be expired.\\n\\n\\nDefault value is 5 minutes.\",\n \"type\": \"string\"\n },\n \"fetchAsynchronously\": {\n \"description\": \"FetchAsynchronously indicates that the JWKS should be fetched\\nwhen a client request arrives. Client requests will be paused\\nuntil the JWKS is fetched.\\nIf false, the proxy listener will wait for the JWKS to be\\nfetched before being activated.\\n\\n\\nDefault value is false.\",\n \"type\": \"boolean\"\n },\n \"jwksCluster\": {\n \"description\": \"JWKSCluster defines how the specified Remote JWKS URI is to be fetched.\",\n \"properties\": {\n \"connectTimeout\": {\n \"description\": \"The timeout for new network connections to hosts in the cluster.\\nIf not set, a default value of 5s will be used.\",\n \"type\": \"string\"\n },\n \"discoveryType\": {\n \"description\": \"DiscoveryType refers to the service discovery type to use for resolving the cluster.\\n\\n\\nThis defaults to STRICT_DNS.\\nOther options include STATIC, LOGICAL_DNS, EDS or ORIGINAL_DST.\",\n \"type\": \"string\"\n },\n \"tlsCertificates\": {\n \"description\": \"TLSCertificates refers to the data containing certificate authority certificates to use\\nin verifying a presented peer certificate.\\nIf not specified and a peer certificate is presented it will not be verified.\\n\\n\\nMust be either CaCertificateProviderInstance or TrustedCA.\",\n \"properties\": {\n \"caCertificateProviderInstance\": {\n \"description\": \"CaCertificateProviderInstance Certificate provider instance for fetching TLS certificates.\",\n \"properties\": {\n \"certificateName\": {\n \"description\": \"CertificateName is used to specify certificate instances or types. For example, \\\"ROOTCA\\\" to specify\\na root-certificate (validation context) or \\\"example.com\\\" to specify a certificate for a\\nparticular domain.\\n\\n\\nThe default value is the empty string.\",\n \"type\": \"string\"\n },\n \"instanceName\": {\n \"description\": \"InstanceName refers to the certificate provider instance name.\\n\\n\\nThe default value is \\\"default\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"trustedCA\": {\n \"description\": \"TrustedCA defines TLS certificate data containing certificate authority certificates\\nto use in verifying a presented peer certificate.\\n\\n\\nExactly one of Filename, EnvironmentVariable, InlineString or InlineBytes must be specified.\",\n \"properties\": {\n \"environmentVariable\": {\n \"type\": \"string\"\n },\n \"filename\": {\n \"type\": \"string\"\n },\n \"inlineBytes\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeoutMs\": {\n \"description\": \"RequestTimeoutMs is the number of milliseconds to\\ntime out when making a request for the JWKS.\",\n \"type\": \"integer\"\n },\n \"retryPolicy\": {\n \"description\": \"RetryPolicy defines a retry policy for fetching JWKS.\\n\\n\\nThere is no retry by default.\",\n \"properties\": {\n \"numRetries\": {\n \"description\": \"NumRetries is the number of times to retry fetching the JWKS.\\nThe retry strategy uses jittered exponential backoff with\\na base interval of 1s and max of 10s.\\n\\n\\nDefault value is 0.\",\n \"type\": \"integer\"\n },\n \"retryPolicyBackOff\": {\n \"description\": \"Retry's backoff policy.\\n\\n\\nDefaults to Envoy's backoff policy.\",\n \"properties\": {\n \"baseInterval\": {\n \"description\": \"BaseInterval to be used for the next back off computation.\\n\\n\\nThe default value from envoy is 1s.\",\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"description\": \"MaxInternal to be used to specify the maximum interval between retries.\\nOptional but should be greater or equal to BaseInterval.\\n\\n\\nDefaults to 10 times BaseInterval.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"uri\": {\n \"description\": \"URI is the URI of the server to query for the JWKS.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"locations\": {\n \"description\": \"Locations where the JWT will be present in requests.\\nEnvoy will check all of these locations to extract a JWT.\\nIf no locations are specified Envoy will default to:\\n1. Authorization header with Bearer schema:\\n \\\"Authorization: Bearer \\u003ctoken\\u003e\\\"\\n2. accessToken query parameter.\",\n \"items\": {\n \"description\": \"JWTLocation is a location where the JWT could be present in requests.\\n\\n\\nOnly one of Header, QueryParam, or Cookie can be specified.\",\n \"properties\": {\n \"cookie\": {\n \"description\": \"Cookie defines how to extract a JWT from an HTTP request cookie.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the cookie containing the token.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"header\": {\n \"description\": \"Header defines how to extract a JWT from an HTTP request header.\",\n \"properties\": {\n \"forward\": {\n \"description\": \"Forward defines whether the header with the JWT should be\\nforwarded after the token has been verified. If false, the\\nheader will not be forwarded to the backend.\\n\\n\\nDefault value is false.\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Name is the name of the header containing the token.\",\n \"type\": \"string\"\n },\n \"valuePrefix\": {\n \"description\": \"ValuePrefix is an optional prefix that precedes the token in the\\nheader value.\\nFor example, \\\"Bearer \\\" is a standard value prefix for a header named\\n\\\"Authorization\\\", but the prefix is not part of the token itself:\\n\\\"Authorization: Bearer \\u003ctoken\\u003e\\\"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"queryParam\": {\n \"description\": \"QueryParam defines how to extract a JWT from an HTTP request\\nquery parameter.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the query param containing the token.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"JWT Provider\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "JWT Provider", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/Mesh.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/Mesh.json new file mode 100644 index 00000000000..bf4ab8186ac --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/Mesh.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "Mesh", + "schema": "{\n \"description\": \"Mesh is the Schema for the mesh API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MeshSpec defines the desired state of Mesh.\",\n \"properties\": {\n \"allowEnablingPermissiveMutualTLS\": {\n \"description\": \"AllowEnablingPermissiveMutualTLS must be true in order to allow setting\\nMutualTLSMode=permissive in either service-defaults or proxy-defaults.\",\n \"type\": \"boolean\"\n },\n \"http\": {\n \"description\": \"HTTP defines the HTTP configuration for the service mesh.\",\n \"properties\": {\n \"sanitizeXForwardedClientCert\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"sanitizeXForwardedClientCert\"\n ],\n \"type\": \"object\"\n },\n \"peering\": {\n \"description\": \"Peering defines the peering configuration for the service mesh.\",\n \"properties\": {\n \"peerThroughMeshGateways\": {\n \"description\": \"PeerThroughMeshGateways determines whether peering traffic between\\ncontrol planes should flow through mesh gateways. If enabled,\\nConsul servers will advertise mesh gateway addresses as their own.\\nAdditionally, mesh gateways will configure themselves to expose\\nthe local servers using a peering-specific SNI.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"TLS defines the TLS configuration for the service mesh.\",\n \"properties\": {\n \"incoming\": {\n \"description\": \"Incoming defines the TLS configuration for inbound mTLS connections targeting\\nthe public listener on Connect and TerminatingGateway proxy kinds.\",\n \"properties\": {\n \"cipherSuites\": {\n \"description\": \"CipherSuites sets the default list of TLS cipher suites to support when negotiating connections using TLS 1.2 or earlier.\\nIf unspecified, Envoy will use a default server cipher list. The list of supported cipher suites can be seen in\\nhttps://github.com/hashicorp/consul/blob/v1.11.2/types/tls.go#L154-L169 and is dependent on underlying support in Envoy.\\nFuture releases of Envoy may remove currently-supported but insecure cipher suites,\\nand future releases of Consul may add new supported cipher suites if any are added to Envoy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tlsMaxVersion\": {\n \"description\": \"TLSMaxVersion sets the default maximum TLS version supported. Must be greater than or equal to `TLSMinVersion`.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy will default to TLS 1.3 as a max version for incoming connections.\",\n \"type\": \"string\"\n },\n \"tlsMinVersion\": {\n \"description\": \"TLSMinVersion sets the default minimum TLS version supported.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy v1.22.0 and newer will default to TLS 1.2 as a min version,\\nwhile older releases of Envoy default to TLS 1.0.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"outgoing\": {\n \"description\": \"Outgoing defines the TLS configuration for outbound mTLS connections dialing upstreams\\nfrom Connect and IngressGateway proxy kinds.\",\n \"properties\": {\n \"cipherSuites\": {\n \"description\": \"CipherSuites sets the default list of TLS cipher suites to support when negotiating connections using TLS 1.2 or earlier.\\nIf unspecified, Envoy will use a default server cipher list. The list of supported cipher suites can be seen in\\nhttps://github.com/hashicorp/consul/blob/v1.11.2/types/tls.go#L154-L169 and is dependent on underlying support in Envoy.\\nFuture releases of Envoy may remove currently-supported but insecure cipher suites,\\nand future releases of Consul may add new supported cipher suites if any are added to Envoy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tlsMaxVersion\": {\n \"description\": \"TLSMaxVersion sets the default maximum TLS version supported. Must be greater than or equal to `TLSMinVersion`.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy will default to TLS 1.3 as a max version for incoming connections.\",\n \"type\": \"string\"\n },\n \"tlsMinVersion\": {\n \"description\": \"TLSMinVersion sets the default minimum TLS version supported.\\nOne of `TLS_AUTO`, `TLSv1_0`, `TLSv1_1`, `TLSv1_2`, or `TLSv1_3`.\\nIf unspecified, Envoy v1.22.0 and newer will default to TLS 1.2 as a min version,\\nwhile older releases of Envoy default to TLS 1.0.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transparentProxy\": {\n \"description\": \"TransparentProxy controls the configuration specific to proxies in \\\"transparent\\\" mode. Added in v1.10.0.\",\n \"properties\": {\n \"meshDestinationsOnly\": {\n \"description\": \"MeshDestinationsOnly determines whether sidecar proxies operating in \\\"transparent\\\" mode can proxy traffic\\nto IP addresses not registered in Consul's catalog. If enabled, traffic will only be proxied to upstreams\\nwith service registrations in the catalog.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"validateClusters\": {\n \"description\": \"ValidateClusters controls whether the clusters the route table refers to are validated. The default value is\\nfalse. When set to false and a route refers to a cluster that does not exist, the route table loads and routing\\nto a non-existent cluster results in a 404. When set to true and the route is set to a cluster that do not exist,\\nthe route table will not load. For more information, refer to\\n[HTTP route configuration in the Envoy docs](https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/route/v3/route.proto#envoy-v3-api-field-config-route-v3-routeconfiguration-validate-clusters)\\nfor more details.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshConfiguration.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshConfiguration.json new file mode 100644 index 00000000000..f0eeca90893 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshConfiguration.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "MeshConfiguration", + "schema": "{\n \"description\": \"MeshConfiguration is the Schema for the Mesh Configuration\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MeshConfiguration is responsible for configuring the default behavior of Mesh Gateways.\\nThis is a Resource type.\",\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Configuration\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Configuration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshGateway.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshGateway.json new file mode 100644 index 00000000000..d6ebe2de4ee --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshGateway.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "MeshGateway", + "schema": "{\n \"description\": \"MeshGateway is the Schema for the Mesh Gateway API\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"gatewayClassName\": {\n \"description\": \"GatewayClassName is the name of the GatewayClass used by the MeshGateway\",\n \"type\": \"string\"\n },\n \"listeners\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"enum\": [\n \"TCP\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"workloads\": {\n \"description\": \"Selection of workloads to be configured as mesh gateways\",\n \"properties\": {\n \"filter\": {\n \"type\": \"string\"\n },\n \"names\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefixes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Gateway\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshService.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshService.json new file mode 100644 index 00000000000..291f8d5bea6 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/MeshService.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "MeshService", + "schema": "{\n \"description\": \"MeshService holds a reference to an externally managed Consul Service Mesh service.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec defines the desired state of MeshService.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name holds the service name for a Consul service.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"description\": \"Peer optionally specifies the name of the peer exporting the Consul service.\\nIf not specified, the Consul service is assumed to be in the local datacenter.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Service\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringAcceptor.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringAcceptor.json new file mode 100644 index 00000000000..bf9b01ff69c --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringAcceptor.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "PeeringAcceptor", + "schema": "{\n \"description\": \"PeeringAcceptor is the Schema for the peeringacceptors API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"PeeringAcceptorSpec defines the desired state of PeeringAcceptor.\",\n \"properties\": {\n \"peer\": {\n \"description\": \"Peer describes the information needed to create a peering.\",\n \"properties\": {\n \"secret\": {\n \"description\": \"Secret describes how to store the generated peering token.\",\n \"properties\": {\n \"backend\": {\n \"description\": \"Backend is where the generated secret is stored. Currently supports the value: \\\"kubernetes\\\".\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the key of the secret generated.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the secret generated.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"peer\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Peering Acceptor\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Peering Acceptor", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringDialer.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringDialer.json new file mode 100644 index 00000000000..0dbe0a4d002 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/PeeringDialer.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "PeeringDialer", + "schema": "{\n \"description\": \"PeeringDialer is the Schema for the peeringdialers API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"PeeringDialerSpec defines the desired state of PeeringDialer.\",\n \"properties\": {\n \"peer\": {\n \"description\": \"Peer describes the information needed to create a peering.\",\n \"properties\": {\n \"secret\": {\n \"description\": \"Secret describes how to store the generated peering token.\",\n \"properties\": {\n \"backend\": {\n \"description\": \"Backend is where the generated secret is stored. Currently supports the value: \\\"kubernetes\\\".\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the key of the secret generated.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the secret generated.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"peer\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Peering Dialer\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Peering Dialer", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyConfiguration.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyConfiguration.json new file mode 100644 index 00000000000..126b587c7dd --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyConfiguration.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ProxyConfiguration", + "schema": "{\n \"description\": \"ProxyConfiguration is the Schema for the TCP Routes API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"This is a Resource type.\",\n \"properties\": {\n \"bootstrapConfig\": {\n \"description\": \"bootstrap_config is the configuration that requires proxies\\nto be restarted to be applied.\",\n \"properties\": {\n \"dogstatsdUrl\": {\n \"type\": \"string\"\n },\n \"overrideJsonTpl\": {\n \"type\": \"string\"\n },\n \"prometheusBindAddr\": {\n \"type\": \"string\"\n },\n \"readyBindAddr\": {\n \"type\": \"string\"\n },\n \"staticClustersJson\": {\n \"type\": \"string\"\n },\n \"staticListenersJson\": {\n \"type\": \"string\"\n },\n \"statsBindAddr\": {\n \"type\": \"string\"\n },\n \"statsConfigJson\": {\n \"type\": \"string\"\n },\n \"statsFlushInterval\": {\n \"type\": \"string\"\n },\n \"statsSinksJson\": {\n \"type\": \"string\"\n },\n \"statsTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statsdUrl\": {\n \"type\": \"string\"\n },\n \"telemetryCollectorBindSocketDir\": {\n \"type\": \"string\"\n },\n \"tracingConfigJson\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicConfig\": {\n \"description\": \"dynamic_config is the configuration that could be changed\\ndynamically (i.e. without needing restart).\",\n \"properties\": {\n \"accessLogs\": {\n \"description\": \"AccessLogs configures the output and format of Envoy access logs\",\n \"properties\": {\n \"disableListenerLogs\": {\n \"description\": \"DisableListenerLogs turns off just listener logs for connections rejected by Envoy because they don't\\nhave a matching listener filter.\",\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"description\": \"Enabled turns off all access logging\",\n \"type\": \"boolean\"\n },\n \"jsonFormat\": {\n \"description\": \"The presence of one format string or the other implies the access log string encoding.\\nDefining both is invalid.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the output file to write logs\",\n \"type\": \"string\"\n },\n \"textFormat\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type selects the output for logs: \\\"file\\\", \\\"stderr\\\". \\\"stdout\\\"\",\n \"enum\": [\n \"LOG_SINK_TYPE_DEFAULT\",\n \"LOG_SINK_TYPE_FILE\",\n \"LOG_SINK_TYPE_STDERR\",\n \"LOG_SINK_TYPE_STDOUT\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"exposeConfig\": {\n \"properties\": {\n \"exposePaths\": {\n \"items\": {\n \"properties\": {\n \"listenerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"localPathPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"enum\": [\n \"EXPOSE_PATH_PROTOCOL_HTTP\",\n \"EXPOSE_PATH_PROTOCOL_HTTP2\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"inboundConnections\": {\n \"description\": \"inbound_connections configures inbound connections to the proxy.\",\n \"properties\": {\n \"balanceInboundConnections\": {\n \"enum\": [\n \"BALANCE_CONNECTIONS_DEFAULT\",\n \"BALANCE_CONNECTIONS_EXACT\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"maxInboundConnections\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"listenerTracingJson\": {\n \"type\": \"string\"\n },\n \"localClusterJson\": {\n \"type\": \"string\"\n },\n \"localConnection\": {\n \"additionalProperties\": {\n \"description\": \"Referenced by ProxyConfiguration\",\n \"properties\": {\n \"connectTimeout\": {\n \"description\": \"A Duration represents a signed, fixed-length span of time represented\\nas a count of seconds and fractions of seconds at nanosecond\\nresolution. It is independent of any calendar and concepts like \\\"day\\\"\\nor \\\"month\\\". It is related to Timestamp in that the difference between\\ntwo Timestamp values is a Duration and it can be added or subtracted\\nfrom a Timestamp. Range is approximately +-10,000 years.\\n\\n\\n# Examples\\n\\n\\nExample 1: Compute Duration from two Timestamps in pseudo code.\\n\\n\\n\\tTimestamp start = ...;\\n\\tTimestamp end = ...;\\n\\tDuration duration = ...;\\n\\n\\n\\tduration.seconds = end.seconds - start.seconds;\\n\\tduration.nanos = end.nanos - start.nanos;\\n\\n\\n\\tif (duration.seconds \\u003c 0 \\u0026\\u0026 duration.nanos \\u003e 0) {\\n\\t duration.seconds += 1;\\n\\t duration.nanos -= 1000000000;\\n\\t} else if (duration.seconds \\u003e 0 \\u0026\\u0026 duration.nanos \\u003c 0) {\\n\\t duration.seconds -= 1;\\n\\t duration.nanos += 1000000000;\\n\\t}\\n\\n\\nExample 2: Compute Timestamp from Timestamp + Duration in pseudo code.\\n\\n\\n\\tTimestamp start = ...;\\n\\tDuration duration = ...;\\n\\tTimestamp end = ...;\\n\\n\\n\\tend.seconds = start.seconds + duration.seconds;\\n\\tend.nanos = start.nanos + duration.nanos;\\n\\n\\n\\tif (end.nanos \\u003c 0) {\\n\\t end.seconds -= 1;\\n\\t end.nanos += 1000000000;\\n\\t} else if (end.nanos \\u003e= 1000000000) {\\n\\t end.seconds += 1;\\n\\t end.nanos -= 1000000000;\\n\\t}\\n\\n\\nExample 3: Compute Duration from datetime.timedelta in Python.\\n\\n\\n\\ttd = datetime.timedelta(days=3, minutes=10)\\n\\tduration = Duration()\\n\\tduration.FromTimedelta(td)\\n\\n\\n# JSON Mapping\\n\\n\\nIn JSON format, the Duration type is encoded as a string rather than an\\nobject, where the string ends in the suffix \\\"s\\\" (indicating seconds) and\\nis preceded by the number of seconds, with nanoseconds expressed as\\nfractional seconds. For example, 3 seconds with 0 nanoseconds should be\\nencoded in JSON format as \\\"3s\\\", while 3 seconds and 1 nanosecond should\\nbe expressed in JSON format as \\\"3.000000001s\\\", and 3 seconds and 1\\nmicrosecond should be expressed in JSON format as \\\"3.000001s\\\".\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"description\": \"A Duration represents a signed, fixed-length span of time represented\\nas a count of seconds and fractions of seconds at nanosecond\\nresolution. It is independent of any calendar and concepts like \\\"day\\\"\\nor \\\"month\\\". It is related to Timestamp in that the difference between\\ntwo Timestamp values is a Duration and it can be added or subtracted\\nfrom a Timestamp. Range is approximately +-10,000 years.\\n\\n\\n# Examples\\n\\n\\nExample 1: Compute Duration from two Timestamps in pseudo code.\\n\\n\\n\\tTimestamp start = ...;\\n\\tTimestamp end = ...;\\n\\tDuration duration = ...;\\n\\n\\n\\tduration.seconds = end.seconds - start.seconds;\\n\\tduration.nanos = end.nanos - start.nanos;\\n\\n\\n\\tif (duration.seconds \\u003c 0 \\u0026\\u0026 duration.nanos \\u003e 0) {\\n\\t duration.seconds += 1;\\n\\t duration.nanos -= 1000000000;\\n\\t} else if (duration.seconds \\u003e 0 \\u0026\\u0026 duration.nanos \\u003c 0) {\\n\\t duration.seconds -= 1;\\n\\t duration.nanos += 1000000000;\\n\\t}\\n\\n\\nExample 2: Compute Timestamp from Timestamp + Duration in pseudo code.\\n\\n\\n\\tTimestamp start = ...;\\n\\tDuration duration = ...;\\n\\tTimestamp end = ...;\\n\\n\\n\\tend.seconds = start.seconds + duration.seconds;\\n\\tend.nanos = start.nanos + duration.nanos;\\n\\n\\n\\tif (end.nanos \\u003c 0) {\\n\\t end.seconds -= 1;\\n\\t end.nanos += 1000000000;\\n\\t} else if (end.nanos \\u003e= 1000000000) {\\n\\t end.seconds += 1;\\n\\t end.nanos -= 1000000000;\\n\\t}\\n\\n\\nExample 3: Compute Duration from datetime.timedelta in Python.\\n\\n\\n\\ttd = datetime.timedelta(days=3, minutes=10)\\n\\tduration = Duration()\\n\\tduration.FromTimedelta(td)\\n\\n\\n# JSON Mapping\\n\\n\\nIn JSON format, the Duration type is encoded as a string rather than an\\nobject, where the string ends in the suffix \\\"s\\\" (indicating seconds) and\\nis preceded by the number of seconds, with nanoseconds expressed as\\nfractional seconds. For example, 3 seconds with 0 nanoseconds should be\\nencoded in JSON format as \\\"3s\\\", while 3 seconds and 1 nanosecond should\\nbe expressed in JSON format as \\\"3.000000001s\\\", and 3 seconds and 1\\nmicrosecond should be expressed in JSON format as \\\"3.000001s\\\".\",\n \"format\": \"duration\",\n \"properties\": {\n \"nanos\": {\n \"description\": \"Signed fractions of a second at nanosecond resolution of the span\\nof time. Durations less than one second are represented with a 0\\n`seconds` field and a positive or negative `nanos` field. For durations\\nof one second or more, a non-zero value for the `nanos` field must be\\nof the same sign as the `seconds` field. Must be from -999,999,999\\nto +999,999,999 inclusive.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"seconds\": {\n \"description\": \"Signed seconds of the span of time. Must be from -315,576,000,000\\nto +315,576,000,000 inclusive. Note: these bounds are computed from:\\n60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"local_connection is the configuration that should be used\\nto connect to the local application provided per-port.\\nThe map keys should correspond to port names on the workload.\",\n \"type\": \"object\"\n },\n \"localWorkloadAddress\": {\n \"description\": \"deprecated:\\nlocal_workload_address, local_workload_port, and local_workload_socket_path\\nare deprecated and are only needed for migration of existing resources.\\n\\n\\nDeprecated: Marked as deprecated in pbmesh/v2beta1/proxy_configuration.proto.\",\n \"type\": \"string\"\n },\n \"localWorkloadPort\": {\n \"description\": \"Deprecated: Marked as deprecated in pbmesh/v2beta1/proxy_configuration.proto.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"localWorkloadSocketPath\": {\n \"description\": \"Deprecated: Marked as deprecated in pbmesh/v2beta1/proxy_configuration.proto.\",\n \"type\": \"string\"\n },\n \"meshGatewayMode\": {\n \"enum\": [\n \"MESH_GATEWAY_MODE_UNSPECIFIED\",\n \"MESH_GATEWAY_MODE_NONE\",\n \"MESH_GATEWAY_MODE_LOCAL\",\n \"MESH_GATEWAY_MODE_REMOTE\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode indicates the proxy's mode. This will default to 'transparent'.\",\n \"enum\": [\n \"PROXY_MODE_DEFAULT\",\n \"PROXY_MODE_TRANSPARENT\",\n \"PROXY_MODE_DIRECT\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"mutualTlsMode\": {\n \"enum\": [\n \"MUTUAL_TLS_MODE_DEFAULT\",\n \"MUTUAL_TLS_MODE_STRICT\",\n \"MUTUAL_TLS_MODE_PERMISSIVE\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"publicListenerJson\": {\n \"type\": \"string\"\n },\n \"transparentProxy\": {\n \"properties\": {\n \"dialedDirectly\": {\n \"description\": \"dialed_directly indicates whether this proxy should be dialed using original destination IP\\nin the connection rather than load balance between all endpoints.\",\n \"type\": \"boolean\"\n },\n \"outboundListenerPort\": {\n \"description\": \"outbound_listener_port is the port for the proxy's outbound listener.\\nThis defaults to 15001.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"opaqueConfig\": {\n \"description\": \"deprecated: prevent usage when using v2 APIs directly.\\nneeded for backwards compatibility\\n\\n\\nDeprecated: Marked as deprecated in pbmesh/v2beta1/proxy_configuration.proto.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"workloads\": {\n \"description\": \"Selection of workloads this proxy configuration should apply to.\\nThese can be prefixes or specific workload names.\",\n \"properties\": {\n \"filter\": {\n \"type\": \"string\"\n },\n \"names\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefixes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Proxy Configuration\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "Proxy Configuration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyDefaults.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyDefaults.json new file mode 100644 index 00000000000..e0000e49f56 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ProxyDefaults.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ProxyDefaults", + "schema": "{\n \"description\": \"ProxyDefaults is the Schema for the proxydefaults API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ProxyDefaultsSpec defines the desired state of ProxyDefaults.\",\n \"properties\": {\n \"accessLogs\": {\n \"description\": \"AccessLogs controls all envoy instances' access logging configuration.\",\n \"properties\": {\n \"disableListenerLogs\": {\n \"description\": \"DisableListenerLogs turns off just listener logs for connections rejected by Envoy because they don't\\nhave a matching listener filter.\",\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"description\": \"Enabled turns on all access logging\",\n \"type\": \"boolean\"\n },\n \"jsonFormat\": {\n \"description\": \"JSONFormat is a JSON-formatted string of an Envoy access log format dictionary.\\nSee for more info on formatting: https://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#format-dictionaries\\nDefining JSONFormat and TextFormat is invalid.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the output file to write logs for file-type logging\",\n \"type\": \"string\"\n },\n \"textFormat\": {\n \"description\": \"TextFormat is a representation of Envoy access logs format.\\nSee for more info on formatting: https://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#format-strings\\nDefining JSONFormat and TextFormat is invalid.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type selects the output for logs\\none of \\\"file\\\", \\\"stderr\\\". \\\"stdout\\\"\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"config\": {\n \"description\": \"Config is an arbitrary map of configuration values used by Connect proxies.\\nAny values that your proxy allows can be configured globally here.\\nSupports JSON config values. See https://www.consul.io/docs/connect/proxies/envoy#configuration-formatting\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"envoyExtensions\": {\n \"description\": \"EnvoyExtensions are a list of extensions to modify Envoy proxy configuration.\",\n \"items\": {\n \"description\": \"EnvoyExtension has configuration for an extension that patches Envoy resources.\",\n \"properties\": {\n \"arguments\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"required\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"expose\": {\n \"description\": \"Expose controls the default expose path configuration for Envoy.\",\n \"properties\": {\n \"checks\": {\n \"description\": \"Checks defines whether paths associated with Consul checks will be exposed.\\nThis flag triggers exposing all HTTP and GRPC check paths registered for the service.\",\n \"type\": \"boolean\"\n },\n \"paths\": {\n \"description\": \"Paths is the list of paths exposed through the proxy.\",\n \"items\": {\n \"properties\": {\n \"listenerPort\": {\n \"description\": \"ListenerPort defines the port of the proxy's listener for exposed paths.\",\n \"type\": \"integer\"\n },\n \"localPathPort\": {\n \"description\": \"LocalPathPort is the port that the service is listening on for the given path.\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Path is the path to expose through the proxy, ie. \\\"/metrics\\\".\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol describes the upstream's service protocol.\\nValid values are \\\"http\\\" and \\\"http2\\\", defaults to \\\"http\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failoverPolicy\": {\n \"description\": \"FailoverPolicy specifies the exact mechanism used for failover.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode specifies the type of failover that will be performed. Valid values are\\n\\\"sequential\\\", \\\"\\\" (equivalent to \\\"sequential\\\") and \\\"order-by-locality\\\".\",\n \"type\": \"string\"\n },\n \"regions\": {\n \"description\": \"Regions is the ordered list of the regions of the failover targets.\\nValid values can be \\\"us-west-1\\\", \\\"us-west-2\\\", and so on.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"meshGateway\": {\n \"description\": \"MeshGateway controls the default mesh gateway configuration for this service.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the mode that should be used for the upstream connection.\\nOne of none, local, or remote.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Mode can be one of \\\"direct\\\" or \\\"transparent\\\". \\\"transparent\\\" represents that inbound and outbound\\napplication traffic is being captured and redirected through the proxy. This mode does not\\nenable the traffic redirection itself. Instead it signals Consul to configure Envoy as if\\ntraffic is already being redirected. \\\"direct\\\" represents that the proxy's listeners must be\\ndialed directly by the local application and other proxies.\\nNote: This cannot be set using the CRD and should be set using annotations on the\\nservices that are part of the mesh.\",\n \"type\": \"string\"\n },\n \"mutualTLSMode\": {\n \"description\": \"MutualTLSMode controls whether mutual TLS is required for all incoming\\nconnections when transparent proxy is enabled. This can be set to\\n\\\"permissive\\\" or \\\"strict\\\". \\\"strict\\\" is the default which requires mutual\\nTLS for incoming connections. In the insecure \\\"permissive\\\" mode,\\nconnections to the sidecar proxy public listener port require mutual\\nTLS, but connections to the service port do not require mutual TLS and\\nare proxied to the application unmodified. Note: Intentions are not\\nenforced for non-mTLS connections. To keep your services secure, we\\nrecommend using \\\"strict\\\" mode whenever possible and enabling\\n\\\"permissive\\\" mode only when necessary.\",\n \"type\": \"string\"\n },\n \"prioritizeByLocality\": {\n \"description\": \"PrioritizeByLocality controls whether the locality of services within the\\nlocal partition will be used to prioritize connectivity.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode specifies the type of prioritization that will be performed\\nwhen selecting nodes in the local partition.\\nValid values are: \\\"\\\" (default \\\"none\\\"), \\\"none\\\", and \\\"failover\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transparentProxy\": {\n \"description\": \"TransparentProxy controls configuration specific to proxies in transparent mode.\\nNote: This cannot be set using the CRD and should be set using annotations on the\\nservices that are part of the mesh.\",\n \"properties\": {\n \"dialedDirectly\": {\n \"description\": \"DialedDirectly indicates whether transparent proxies can dial this proxy instance directly.\\nThe discovery chain is not considered when dialing a service instance directly.\\nThis setting is useful when addressing stateful services, such as a database cluster with a leader node.\",\n \"type\": \"boolean\"\n },\n \"outboundListenerPort\": {\n \"description\": \"OutboundListenerPort is the port of the listener where outbound application\\ntraffic is being redirected to.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Proxy Defaults\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Proxy Defaults", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/Registration.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/Registration.json new file mode 100644 index 00000000000..c69e395b9e5 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/Registration.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "Registration", + "schema": "{\n \"description\": \"Registration defines the resource for working with service registrations.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec defines the desired state of Registration.\",\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"check\": {\n \"description\": \"HealthCheck is used to represent a single check.\",\n \"properties\": {\n \"checkId\": {\n \"type\": \"string\"\n },\n \"definition\": {\n \"description\": \"HealthCheckDefinition is used to store the details about\\na health check's execution.\",\n \"properties\": {\n \"body\": {\n \"type\": \"string\"\n },\n \"deregisterCriticalServiceAfterDuration\": {\n \"type\": \"string\"\n },\n \"grpc\": {\n \"type\": \"string\"\n },\n \"grpcUseTLS\": {\n \"type\": \"boolean\"\n },\n \"header\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"type\": \"object\"\n },\n \"http\": {\n \"type\": \"string\"\n },\n \"intervalDuration\": {\n \"type\": \"string\"\n },\n \"method\": {\n \"type\": \"string\"\n },\n \"osService\": {\n \"type\": \"string\"\n },\n \"tcp\": {\n \"type\": \"string\"\n },\n \"tcpUseTLS\": {\n \"type\": \"boolean\"\n },\n \"timeoutDuration\": {\n \"type\": \"string\"\n },\n \"tlsServerName\": {\n \"type\": \"string\"\n },\n \"tlsSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"udp\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"intervalDuration\"\n ],\n \"type\": \"object\"\n },\n \"exposedPort\": {\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"node\": {\n \"type\": \"string\"\n },\n \"notes\": {\n \"type\": \"string\"\n },\n \"output\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"type\": \"string\"\n },\n \"serviceId\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"checkId\",\n \"definition\",\n \"name\",\n \"serviceId\",\n \"serviceName\",\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"datacenter\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"locality\": {\n \"properties\": {\n \"region\": {\n \"type\": \"string\"\n },\n \"zone\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"node\": {\n \"type\": \"string\"\n },\n \"nodeMeta\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"partition\": {\n \"type\": \"string\"\n },\n \"service\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"enableTagOverride\": {\n \"type\": \"boolean\"\n },\n \"id\": {\n \"type\": \"string\"\n },\n \"locality\": {\n \"properties\": {\n \"region\": {\n \"type\": \"string\"\n },\n \"zone\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"meta\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"integer\"\n },\n \"socketPath\": {\n \"type\": \"string\"\n },\n \"taggedAddresses\": {\n \"additionalProperties\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"address\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"weights\": {\n \"properties\": {\n \"passing\": {\n \"type\": \"integer\"\n },\n \"warning\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"passing\",\n \"warning\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"skipNodeUpdate\": {\n \"type\": \"boolean\"\n },\n \"taggedAddresses\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Registration\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Registration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteAuthFilter.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteAuthFilter.json new file mode 100644 index 00000000000..65af40a2de2 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteAuthFilter.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "RouteAuthFilter", + "schema": "{\n \"description\": \"RouteAuthFilter is the Schema for the routeauthfilters API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"RouteAuthFilterSpec defines the desired state of RouteAuthFilter.\",\n \"properties\": {\n \"jwt\": {\n \"description\": \"This re-uses the JWT requirement type from Gateway Policy Types.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Providers is a list of providers to consider when verifying a JWT.\",\n \"items\": {\n \"description\": \"GatewayJWTProvider holds the provider and claim verification information.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the JWT provider. There MUST be a corresponding\\n\\\"jwt-provider\\\" config entry with this name.\",\n \"type\": \"string\"\n },\n \"verifyClaims\": {\n \"description\": \"VerifyClaims is a list of additional claims to verify in a JWT's payload.\",\n \"items\": {\n \"description\": \"GatewayJWTClaimVerification holds the actual claim information to be verified.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to the claim in the token JSON.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"value\": {\n \"description\": \"Value is the expected value at the given path:\\n- If the type at the path is a list then we verify\\n that this value is contained in the list.\\n\\n\\n- If the type at the path is a string then we verify\\n that this value matches.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"providers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Route Auth Filter\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Route Auth Filter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteRetryFilter.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteRetryFilter.json new file mode 100644 index 00000000000..88e660f4a3b --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteRetryFilter.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "RouteRetryFilter", + "schema": "{\n \"description\": \"RouteRetryFilter is the Schema for the routeretryfilters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"RouteRetryFilterSpec defines the desired state of RouteRetryFilter.\",\n \"properties\": {\n \"numRetries\": {\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"retryOn\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retryOnConnectFailure\": {\n \"type\": \"boolean\"\n },\n \"retryOnStatusCodes\": {\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Route Retry Filter\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Route Retry Filter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteTimeoutFilter.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteTimeoutFilter.json new file mode 100644 index 00000000000..9627c98b215 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/RouteTimeoutFilter.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "RouteTimeoutFilter", + "schema": "{\n \"description\": \"RouteTimeoutFilter is the Schema for the httproutetimeoutfilters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"RouteTimeoutFilterSpec defines the desired state of RouteTimeoutFilter.\",\n \"properties\": {\n \"idleTimeout\": {\n \"format\": \"duration\",\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"format\": \"duration\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Route Timeout Filter\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Route Timeout Filter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/SamenessGroup.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/SamenessGroup.json new file mode 100644 index 00000000000..407ebfd9d21 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/SamenessGroup.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "SamenessGroup", + "schema": "{\n \"description\": \"SamenessGroup is the Schema for the samenessgroups API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"SamenessGroupSpec defines the desired state of SamenessGroup.\",\n \"properties\": {\n \"defaultForFailover\": {\n \"description\": \"DefaultForFailover indicates that upstream requests to members of the given sameness group will implicitly failover between members of this sameness group.\\nWhen DefaultForFailover is true, the local partition must be a member of the sameness group or IncludeLocal must be set to true.\",\n \"type\": \"boolean\"\n },\n \"includeLocal\": {\n \"description\": \"IncludeLocal is used to include the local partition as the first member of the sameness group.\\nThe local partition can only be a member of a single sameness group.\",\n \"type\": \"boolean\"\n },\n \"members\": {\n \"description\": \"Members are the partitions and peers that are part of the sameness group.\\nIf a member of a sameness group does not exist, it will be ignored.\",\n \"items\": {\n \"properties\": {\n \"partition\": {\n \"description\": \"The partitions and peers that are part of the sameness group.\\nA sameness group member cannot define both peer and partition at the same time.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Sameness Group\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Sameness Group", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceDefaults.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceDefaults.json new file mode 100644 index 00000000000..34383d3062c --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceDefaults.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ServiceDefaults", + "schema": "{\n \"description\": \"ServiceDefaults is the Schema for the servicedefaults API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceDefaultsSpec defines the desired state of ServiceDefaults.\",\n \"properties\": {\n \"balanceInboundConnections\": {\n \"description\": \"BalanceInboundConnections sets the strategy for allocating inbound connections to the service across\\nproxy threads. The only supported value is exact_balance. By default, no connection balancing is used.\\nRefer to the Envoy Connection Balance config for details.\",\n \"type\": \"string\"\n },\n \"destination\": {\n \"description\": \"Destination is an address(es)/port combination that represents an endpoint\\noutside the mesh. This is only valid when the mesh is configured in \\\"transparent\\\"\\nmode. Destinations live outside of Consul's catalog, and because of this, they\\ndo not require an artificial node to be created.\",\n \"properties\": {\n \"addresses\": {\n \"description\": \"Addresses is a list of IPs and/or hostnames that can be dialed\\nand routed through a terminating gateway.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"port\": {\n \"description\": \"Port is the port that can be dialed on any of the addresses in this\\nDestination.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"envoyExtensions\": {\n \"description\": \"EnvoyExtensions are a list of extensions to modify Envoy proxy configuration.\",\n \"items\": {\n \"description\": \"EnvoyExtension has configuration for an extension that patches Envoy resources.\",\n \"properties\": {\n \"arguments\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"required\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"expose\": {\n \"description\": \"Expose controls the default expose path configuration for Envoy.\",\n \"properties\": {\n \"checks\": {\n \"description\": \"Checks defines whether paths associated with Consul checks will be exposed.\\nThis flag triggers exposing all HTTP and GRPC check paths registered for the service.\",\n \"type\": \"boolean\"\n },\n \"paths\": {\n \"description\": \"Paths is the list of paths exposed through the proxy.\",\n \"items\": {\n \"properties\": {\n \"listenerPort\": {\n \"description\": \"ListenerPort defines the port of the proxy's listener for exposed paths.\",\n \"type\": \"integer\"\n },\n \"localPathPort\": {\n \"description\": \"LocalPathPort is the port that the service is listening on for the given path.\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Path is the path to expose through the proxy, ie. \\\"/metrics\\\".\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol describes the upstream's service protocol.\\nValid values are \\\"http\\\" and \\\"http2\\\", defaults to \\\"http\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"externalSNI\": {\n \"description\": \"ExternalSNI is an optional setting that allows for the TLS SNI value\\nto be changed to a non-connect value when federating with an external system.\",\n \"type\": \"string\"\n },\n \"localConnectTimeoutMs\": {\n \"description\": \"LocalConnectTimeoutMs is the number of milliseconds allowed to make connections to the local application\\ninstance before timing out. Defaults to 5000.\",\n \"type\": \"integer\"\n },\n \"localRequestTimeoutMs\": {\n \"description\": \"LocalRequestTimeoutMs is the timeout for HTTP requests to the local application instance in milliseconds.\\nApplies to HTTP-based protocols only. If not specified, inherits the Envoy default for\\nroute timeouts (15s).\",\n \"type\": \"integer\"\n },\n \"maxInboundConnections\": {\n \"description\": \"MaxInboundConnections is the maximum number of concurrent inbound connections to\\neach service instance. Defaults to 0 (using consul's default) if not set.\",\n \"type\": \"integer\"\n },\n \"meshGateway\": {\n \"description\": \"MeshGateway controls the default mesh gateway configuration for this service.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the mode that should be used for the upstream connection.\\nOne of none, local, or remote.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Mode can be one of \\\"direct\\\" or \\\"transparent\\\". \\\"transparent\\\" represents that inbound and outbound\\napplication traffic is being captured and redirected through the proxy. This mode does not\\nenable the traffic redirection itself. Instead it signals Consul to configure Envoy as if\\ntraffic is already being redirected. \\\"direct\\\" represents that the proxy's listeners must be\\ndialed directly by the local application and other proxies.\\nNote: This cannot be set using the CRD and should be set using annotations on the\\nservices that are part of the mesh.\",\n \"type\": \"string\"\n },\n \"mutualTLSMode\": {\n \"description\": \"MutualTLSMode controls whether mutual TLS is required for all incoming\\nconnections when transparent proxy is enabled. This can be set to\\n\\\"permissive\\\" or \\\"strict\\\". \\\"strict\\\" is the default which requires mutual\\nTLS for incoming connections. In the insecure \\\"permissive\\\" mode,\\nconnections to the sidecar proxy public listener port require mutual\\nTLS, but connections to the service port do not require mutual TLS and\\nare proxied to the application unmodified. Note: Intentions are not\\nenforced for non-mTLS connections. To keep your services secure, we\\nrecommend using \\\"strict\\\" mode whenever possible and enabling\\n\\\"permissive\\\" mode only when necessary.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol sets the protocol of the service. This is used by Connect proxies for\\nthings like observability features and to unlock usage of the\\nservice-splitter and service-router config entries for a service.\",\n \"type\": \"string\"\n },\n \"rateLimits\": {\n \"description\": \"RateLimits is rate limiting configuration that is applied to\\ninbound traffic for a service. Rate limiting is a Consul enterprise feature.\",\n \"properties\": {\n \"instanceLevel\": {\n \"description\": \"InstanceLevel represents rate limit configuration\\nthat is applied per service instance.\",\n \"properties\": {\n \"requestsMaxBurst\": {\n \"description\": \"RequestsMaxBurst is the maximum number of requests that can be sent\\nin a burst. Should be equal to or greater than RequestsPerSecond.\\nIf unset, defaults to RequestsPerSecond.\\n\\n\\nInternally, this is the maximum size of the token bucket used for rate limiting.\",\n \"type\": \"integer\"\n },\n \"requestsPerSecond\": {\n \"description\": \"RequestsPerSecond is the average number of requests per second that can be\\nmade without being throttled. This field is required if RequestsMaxBurst\\nis set. The allowed number of requests may exceed RequestsPerSecond up to\\nthe value specified in RequestsMaxBurst.\\n\\n\\nInternally, this is the refill rate of the token bucket used for rate limiting.\",\n \"type\": \"integer\"\n },\n \"routes\": {\n \"description\": \"Routes is a list of rate limits applied to specific routes.\\nFor a given request, the first matching route will be applied, if any.\\nOverrides any top-level configuration.\",\n \"items\": {\n \"properties\": {\n \"pathExact\": {\n \"description\": \"Exact path to match. Exactly one of PathExact, PathPrefix, or PathRegex must be specified.\",\n \"type\": \"string\"\n },\n \"pathPrefix\": {\n \"description\": \"Prefix to match. Exactly one of PathExact, PathPrefix, or PathRegex must be specified.\",\n \"type\": \"string\"\n },\n \"pathRegex\": {\n \"description\": \"Regex to match. Exactly one of PathExact, PathPrefix, or PathRegex must be specified.\",\n \"type\": \"string\"\n },\n \"requestsMaxBurst\": {\n \"description\": \"RequestsMaxBurst is the maximum number of requests that can be sent\\nin a burst. Should be equal to or greater than RequestsPerSecond. If unset,\\ndefaults to RequestsPerSecond. Internally, this is the maximum size of the token\\nbucket used for rate limiting.\",\n \"type\": \"integer\"\n },\n \"requestsPerSecond\": {\n \"description\": \"RequestsPerSecond is the average number of requests per\\nsecond that can be made without being throttled. This field is required\\nif RequestsMaxBurst is set. The allowed number of requests may exceed\\nRequestsPerSecond up to the value specified in RequestsMaxBurst.\\nInternally, this is the refill rate of the token bucket used for rate limiting.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transparentProxy\": {\n \"description\": \"TransparentProxy controls configuration specific to proxies in transparent mode.\\nNote: This cannot be set using the CRD and should be set using annotations on the\\nservices that are part of the mesh.\",\n \"properties\": {\n \"dialedDirectly\": {\n \"description\": \"DialedDirectly indicates whether transparent proxies can dial this proxy instance directly.\\nThe discovery chain is not considered when dialing a service instance directly.\\nThis setting is useful when addressing stateful services, such as a database cluster with a leader node.\",\n \"type\": \"boolean\"\n },\n \"outboundListenerPort\": {\n \"description\": \"OutboundListenerPort is the port of the listener where outbound application\\ntraffic is being redirected to.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamConfig\": {\n \"description\": \"UpstreamConfig controls default configuration settings that apply across all upstreams,\\nand per-upstream configuration overrides. Note that per-upstream configuration applies\\nacross all federated datacenters to the pairing of source and upstream destination services.\",\n \"properties\": {\n \"defaults\": {\n \"description\": \"Defaults contains default configuration for all upstreams of a given\\nservice. The name field must be empty.\",\n \"properties\": {\n \"connectTimeoutMs\": {\n \"description\": \"ConnectTimeoutMs is the number of milliseconds to timeout making a new\\nconnection to this upstream. Defaults to 5000 (5 seconds) if not set.\",\n \"type\": \"integer\"\n },\n \"envoyClusterJSON\": {\n \"description\": \"EnvoyClusterJSON is a complete override (\\\"escape hatch\\\") for the upstream's\\ncluster. The Connect client TLS certificate and context will be injected\\noverriding any TLS settings present.\\nNote: This escape hatch is NOT compatible with the discovery chain and\\nwill be ignored if a discovery chain is active.\",\n \"type\": \"string\"\n },\n \"envoyListenerJSON\": {\n \"description\": \"EnvoyListenerJSON is a complete override (\\\"escape hatch\\\") for the upstream's\\nlistener.\\nNote: This escape hatch is NOT compatible with the discovery chain and\\nwill be ignored if a discovery chain is active.\",\n \"type\": \"string\"\n },\n \"limits\": {\n \"description\": \"Limits are the set of limits that are applied to the proxy for a specific upstream of a\\nservice instance.\",\n \"properties\": {\n \"maxConcurrentRequests\": {\n \"description\": \"MaxConcurrentRequests is the maximum number of in-flight requests that will be allowed\\nto the upstream cluster at a point in time. This is mostly applicable to HTTP/2\\nclusters since all HTTP/1.1 requests are limited by MaxConnections.\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"MaxConnections is the maximum number of connections the local proxy can\\nmake to the upstream service.\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"MaxPendingRequests is the maximum number of requests that will be queued\\nwaiting for an available connection. This is mostly applicable to HTTP/1.1\\nclusters since all HTTP/2 requests are streamed over a single\\nconnection.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"meshGateway\": {\n \"description\": \"MeshGatewayConfig controls how Mesh Gateways are configured and used.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the mode that should be used for the upstream connection.\\nOne of none, local, or remote.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"passiveHealthCheck\": {\n \"description\": \"PassiveHealthCheck configuration determines how upstream proxy instances will\\nbe monitored for removal from the load balancing pool.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to the base time\\nmultiplied by the number of times the host has been ejected and is capped by\\nmax_ejection_time (Default 300s). Defaults to 30s.\",\n \"type\": \"string\"\n },\n \"enforcingConsecutive5xx\": {\n \"description\": \"EnforcingConsecutive5xx is the % chance that a host will be actually ejected\\nwhen an outlier status is detected through consecutive 5xx.\\nThis setting can be used to disable ejection or to ramp it up slowly.\\nEx. Setting this to 10 will make it a 10% chance that the host will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"interval\": {\n \"description\": \"Interval between health check analysis sweeps. Each sweep may remove\\nhosts or return hosts to the pool. Ex. setting this to \\\"10s\\\" will set\\nthe interval to 10 seconds.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier detection.\\nDefaults to 10% but will eject at least one host regardless of the value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxFailures\": {\n \"description\": \"MaxFailures is the count of consecutive failures that results in a host\\nbeing removed from the pool.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"peer\": {\n \"description\": \"Peer is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol describes the upstream's service protocol. Valid values are \\\"tcp\\\",\\n\\\"http\\\" and \\\"grpc\\\". Anything else is treated as tcp. This enables protocol\\naware features like per-request metrics and connection pooling, tracing,\\nrouting etc.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"overrides\": {\n \"description\": \"Overrides is a slice of per-service configuration. The name field is\\nrequired.\",\n \"items\": {\n \"properties\": {\n \"connectTimeoutMs\": {\n \"description\": \"ConnectTimeoutMs is the number of milliseconds to timeout making a new\\nconnection to this upstream. Defaults to 5000 (5 seconds) if not set.\",\n \"type\": \"integer\"\n },\n \"envoyClusterJSON\": {\n \"description\": \"EnvoyClusterJSON is a complete override (\\\"escape hatch\\\") for the upstream's\\ncluster. The Connect client TLS certificate and context will be injected\\noverriding any TLS settings present.\\nNote: This escape hatch is NOT compatible with the discovery chain and\\nwill be ignored if a discovery chain is active.\",\n \"type\": \"string\"\n },\n \"envoyListenerJSON\": {\n \"description\": \"EnvoyListenerJSON is a complete override (\\\"escape hatch\\\") for the upstream's\\nlistener.\\nNote: This escape hatch is NOT compatible with the discovery chain and\\nwill be ignored if a discovery chain is active.\",\n \"type\": \"string\"\n },\n \"limits\": {\n \"description\": \"Limits are the set of limits that are applied to the proxy for a specific upstream of a\\nservice instance.\",\n \"properties\": {\n \"maxConcurrentRequests\": {\n \"description\": \"MaxConcurrentRequests is the maximum number of in-flight requests that will be allowed\\nto the upstream cluster at a point in time. This is mostly applicable to HTTP/2\\nclusters since all HTTP/1.1 requests are limited by MaxConnections.\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"MaxConnections is the maximum number of connections the local proxy can\\nmake to the upstream service.\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"MaxPendingRequests is the maximum number of requests that will be queued\\nwaiting for an available connection. This is mostly applicable to HTTP/1.1\\nclusters since all HTTP/2 requests are streamed over a single\\nconnection.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"meshGateway\": {\n \"description\": \"MeshGatewayConfig controls how Mesh Gateways are configured and used.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode is the mode that should be used for the upstream connection.\\nOne of none, local, or remote.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"passiveHealthCheck\": {\n \"description\": \"PassiveHealthCheck configuration determines how upstream proxy instances will\\nbe monitored for removal from the load balancing pool.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to the base time\\nmultiplied by the number of times the host has been ejected and is capped by\\nmax_ejection_time (Default 300s). Defaults to 30s.\",\n \"type\": \"string\"\n },\n \"enforcingConsecutive5xx\": {\n \"description\": \"EnforcingConsecutive5xx is the % chance that a host will be actually ejected\\nwhen an outlier status is detected through consecutive 5xx.\\nThis setting can be used to disable ejection or to ramp it up slowly.\\nEx. Setting this to 10 will make it a 10% chance that the host will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"interval\": {\n \"description\": \"Interval between health check analysis sweeps. Each sweep may remove\\nhosts or return hosts to the pool. Ex. setting this to \\\"10s\\\" will set\\nthe interval to 10 seconds.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier detection.\\nDefaults to 10% but will eject at least one host regardless of the value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxFailures\": {\n \"description\": \"MaxFailures is the count of consecutive failures that results in a host\\nbeing removed from the pool.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"peer\": {\n \"description\": \"Peer is only accepted within service ServiceDefaultsSpec.UpstreamConfig.Overrides config entry.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol describes the upstream's service protocol. Valid values are \\\"tcp\\\",\\n\\\"http\\\" and \\\"grpc\\\". Anything else is treated as tcp. This enables protocol\\naware features like per-request metrics and connection pooling, tracing,\\nrouting etc.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Service Defaults\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Defaults", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceIntentions.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceIntentions.json new file mode 100644 index 00000000000..772a753b137 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceIntentions.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ServiceIntentions", + "schema": "{\n \"description\": \"ServiceIntentions is the Schema for the serviceintentions API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceIntentionsSpec defines the desired state of ServiceIntentions.\",\n \"properties\": {\n \"destination\": {\n \"description\": \"Destination is the intention destination that will have the authorization granted to.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the destination of all intentions defined in this config entry.\\nThis may be set to the wildcard character (*) to match\\nall services that don't otherwise have intentions defined.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace the config entry will apply to.\\nThis may be set to the wildcard character (*) to match all services\\nin all namespaces that don't otherwise have intentions defined.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"jwt\": {\n \"description\": \"JWT specifies the configuration to validate a JSON Web Token for all incoming requests.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Providers is a list of providers to consider when verifying a JWT.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the JWT provider. There MUST be a corresponding\\n\\\"jwt-provider\\\" config entry with this name.\",\n \"type\": \"string\"\n },\n \"verifyClaims\": {\n \"description\": \"VerifyClaims is a list of additional claims to verify in a JWT's payload.\",\n \"items\": {\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to the claim in the token JSON.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"value\": {\n \"description\": \"Value is the expected value at the given path. If the type at the path\\nis a list then we verify that this value is contained in the list. If\\nthe type at the path is a string then we verify that this value matches.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of all intention sources and the authorization granted to those sources.\\nThe order of this list does not matter, but out of convenience Consul will always store this\\nreverse sorted by intention precedence, as that is the order that they will be evaluated at enforcement time.\",\n \"items\": {\n \"properties\": {\n \"action\": {\n \"description\": \"Action is required for an L4 intention, and should be set to one of\\n\\\"allow\\\" or \\\"deny\\\" for the action that should be taken if this intention matches a request.\",\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Description for the intention. This is not used by Consul, but is presented in API responses to assist tooling.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the source of the intention. This is the name of a\\nConsul service. The service doesn't need to be registered.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace for the Name parameter.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the Admin Partition for the Name parameter.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"description\": \"Peer is the peer name for the Name parameter.\",\n \"type\": \"string\"\n },\n \"permissions\": {\n \"description\": \"Permissions is the list of all additional L7 attributes that extend the intention match criteria.\\nPermission precedence is applied top to bottom. For any given request the first permission to match\\nin the list is terminal and stops further evaluation. As with L4 intentions, traffic that fails to\\nmatch any of the provided permissions in this intention will be subject to the default intention\\nbehavior is defined by the default ACL policy. This should be omitted for an L4 intention\\nas it is mutually exclusive with the Action field.\",\n \"items\": {\n \"properties\": {\n \"action\": {\n \"description\": \"Action is one of \\\"allow\\\" or \\\"deny\\\" for the action that\\nshould be taken if this permission matches a request.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"HTTP is a set of HTTP-specific authorization criteria.\",\n \"properties\": {\n \"header\": {\n \"description\": \"Header is a set of criteria that can match on HTTP request headers.\\nIf more than one is configured all must match for the overall match to apply.\",\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"description\": \"Exact matches if the header with the given name is this value.\",\n \"type\": \"string\"\n },\n \"invert\": {\n \"description\": \"Invert inverts the logic of the match.\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Name is the name of the header to match.\",\n \"type\": \"string\"\n },\n \"prefix\": {\n \"description\": \"Prefix matches if the header with the given name has this prefix.\",\n \"type\": \"string\"\n },\n \"present\": {\n \"description\": \"Present matches if the header with the given name is present with any value.\",\n \"type\": \"boolean\"\n },\n \"regex\": {\n \"description\": \"Regex matches if the header with the given name matches this pattern.\",\n \"type\": \"string\"\n },\n \"suffix\": {\n \"description\": \"Suffix matches if the header with the given name has this suffix.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"description\": \"Methods is a list of HTTP methods for which this match applies. If unspecified\\nall HTTP methods are matched. If provided the names must be a valid method.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathExact\": {\n \"description\": \"PathExact is the exact path to match on the HTTP request path.\",\n \"type\": \"string\"\n },\n \"pathPrefix\": {\n \"description\": \"PathPrefix is the path prefix to match on the HTTP request path.\",\n \"type\": \"string\"\n },\n \"pathRegex\": {\n \"description\": \"PathRegex is the regular expression to match on the HTTP request path.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"jwt\": {\n \"description\": \"JWT specifies configuration to validate a JSON Web Token for incoming requests.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Providers is a list of providers to consider when verifying a JWT.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the JWT provider. There MUST be a corresponding\\n\\\"jwt-provider\\\" config entry with this name.\",\n \"type\": \"string\"\n },\n \"verifyClaims\": {\n \"description\": \"VerifyClaims is a list of additional claims to verify in a JWT's payload.\",\n \"items\": {\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to the claim in the token JSON.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"value\": {\n \"description\": \"Value is the expected value at the given path. If the type at the path\\nis a list then we verify that this value is contained in the list. If\\nthe type at the path is a string then we verify that this value matches.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"samenessGroup\": {\n \"description\": \"SamenessGroup is the name of the sameness group, if applicable.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Service Intentions\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Intentions", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceResolver.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceResolver.json new file mode 100644 index 00000000000..e247bf5a374 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceResolver.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ServiceResolver", + "schema": "{\n \"description\": \"ServiceResolver is the Schema for the serviceresolvers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceResolverSpec defines the desired state of ServiceResolver.\",\n \"properties\": {\n \"connectTimeout\": {\n \"description\": \"ConnectTimeout is the timeout for establishing new network connections\\nto this service.\",\n \"type\": \"string\"\n },\n \"defaultSubset\": {\n \"description\": \"DefaultSubset is the subset to use when no explicit subset is requested.\\nIf empty the unnamed subset is used.\",\n \"type\": \"string\"\n },\n \"failover\": {\n \"additionalProperties\": {\n \"properties\": {\n \"datacenters\": {\n \"description\": \"Datacenters is a fixed list of datacenters to try during failover.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace to resolve the requested service from to form\\nthe failover group of instances. If empty the current namespace is used.\",\n \"type\": \"string\"\n },\n \"policy\": {\n \"description\": \"Policy specifies the exact mechanism used for failover.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode specifies the type of failover that will be performed. Valid values are\\n\\\"sequential\\\", \\\"\\\" (equivalent to \\\"sequential\\\") and \\\"order-by-locality\\\".\",\n \"type\": \"string\"\n },\n \"regions\": {\n \"description\": \"Regions is the ordered list of the regions of the failover targets.\\nValid values can be \\\"us-west-1\\\", \\\"us-west-2\\\", and so on.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"samenessGroup\": {\n \"description\": \"SamenessGroup is the name of the sameness group to try during failover.\",\n \"type\": \"string\"\n },\n \"service\": {\n \"description\": \"Service is the service to resolve instead of the default as the failover\\ngroup of instances during failover.\",\n \"type\": \"string\"\n },\n \"serviceSubset\": {\n \"description\": \"ServiceSubset is the named subset of the requested service to resolve as\\nthe failover group of instances. If empty the default subset for the\\nrequested service is used.\",\n \"type\": \"string\"\n },\n \"targets\": {\n \"description\": \"Targets specifies a fixed list of failover targets to try during failover.\",\n \"items\": {\n \"properties\": {\n \"datacenter\": {\n \"description\": \"Datacenter specifies the datacenter to try during failover.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace to try during failover.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition specifies the partition to try during failover.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"description\": \"Peer specifies the name of the cluster peer to try during failover.\",\n \"type\": \"string\"\n },\n \"service\": {\n \"description\": \"Service specifies the name of the service to try during failover.\",\n \"type\": \"string\"\n },\n \"serviceSubset\": {\n \"description\": \"ServiceSubset specifies the service subset to try during failover.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Failover controls when and how to reroute traffic to an alternate pool of\\nservice instances.\\nThe map is keyed by the service subset it applies to and the special\\nstring \\\"*\\\" is a wildcard that applies to any subset not otherwise\\nspecified here.\",\n \"type\": \"object\"\n },\n \"loadBalancer\": {\n \"description\": \"LoadBalancer determines the load balancing policy and configuration for services\\nissuing requests to this upstream service.\",\n \"properties\": {\n \"hashPolicies\": {\n \"description\": \"HashPolicies is a list of hash policies to use for hashing load balancing algorithms.\\nHash policies are evaluated individually and combined such that identical lists\\nresult in the same hash.\\nIf no hash policies are present, or none are successfully evaluated,\\nthen a random backend host will be selected.\",\n \"items\": {\n \"properties\": {\n \"cookieConfig\": {\n \"description\": \"CookieConfig contains configuration for the \\\"cookie\\\" hash policy type.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path is the path to set for the cookie.\",\n \"type\": \"string\"\n },\n \"session\": {\n \"description\": \"Session determines whether to generate a session cookie with no expiration.\",\n \"type\": \"boolean\"\n },\n \"ttl\": {\n \"description\": \"TTL is the ttl for generated cookies. Cannot be specified for session cookies.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"field\": {\n \"description\": \"Field is the attribute type to hash on.\\nMust be one of \\\"header\\\", \\\"cookie\\\", or \\\"query_parameter\\\".\\nCannot be specified along with sourceIP.\",\n \"type\": \"string\"\n },\n \"fieldValue\": {\n \"description\": \"FieldValue is the value to hash.\\nie. header name, cookie name, URL query parameter name\\nCannot be specified along with sourceIP.\",\n \"type\": \"string\"\n },\n \"sourceIP\": {\n \"description\": \"SourceIP determines whether the hash should be of the source IP rather than of a field and field value.\\nCannot be specified along with field or fieldValue.\",\n \"type\": \"boolean\"\n },\n \"terminal\": {\n \"description\": \"Terminal will short circuit the computation of the hash when multiple hash policies are present.\\nIf a hash is computed when a Terminal policy is evaluated,\\nthen that hash will be used and subsequent hash policies will be ignored.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"leastRequestConfig\": {\n \"description\": \"LeastRequestConfig contains configuration for the \\\"leastRequest\\\" policy type.\",\n \"properties\": {\n \"choiceCount\": {\n \"description\": \"ChoiceCount determines the number of random healthy hosts from which to select the one with the least requests.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"policy\": {\n \"description\": \"Policy is the load balancing policy used to select a host.\",\n \"type\": \"string\"\n },\n \"ringHashConfig\": {\n \"description\": \"RingHashConfig contains configuration for the \\\"ringHash\\\" policy type.\",\n \"properties\": {\n \"maximumRingSize\": {\n \"description\": \"MaximumRingSize determines the maximum number of entries in the hash ring.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"minimumRingSize\": {\n \"description\": \"MinimumRingSize determines the minimum number of entries in the hash ring.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"prioritizeByLocality\": {\n \"description\": \"PrioritizeByLocality controls whether the locality of services within the\\nlocal partition will be used to prioritize connectivity.\",\n \"properties\": {\n \"mode\": {\n \"description\": \"Mode specifies the type of prioritization that will be performed\\nwhen selecting nodes in the local partition.\\nValid values are: \\\"\\\" (default \\\"none\\\"), \\\"none\\\", and \\\"failover\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"redirect\": {\n \"description\": \"Redirect when configured, all attempts to resolve the service this\\nresolver defines will be substituted for the supplied redirect\\nEXCEPT when the redirect has already been applied.\\nWhen substituting the supplied redirect, all other fields besides\\nKind, Name, and Redirect will be ignored.\",\n \"properties\": {\n \"datacenter\": {\n \"description\": \"Datacenter is the datacenter to resolve the service from instead of the\\ncurrent one.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the Consul namespace to resolve the service from instead of\\nthe current namespace. If empty the current namespace is assumed.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the Consul partition to resolve the service from instead of\\nthe current partition. If empty the current partition is assumed.\",\n \"type\": \"string\"\n },\n \"peer\": {\n \"description\": \"Peer is the name of the cluster peer to resolve the service from instead\\nof the current one.\",\n \"type\": \"string\"\n },\n \"samenessGroup\": {\n \"description\": \"SamenessGroup is the name of the sameness group to resolve the service from instead of the current one.\",\n \"type\": \"string\"\n },\n \"service\": {\n \"description\": \"Service is a service to resolve instead of the current service.\",\n \"type\": \"string\"\n },\n \"serviceSubset\": {\n \"description\": \"ServiceSubset is a named subset of the given service to resolve instead\\nof one defined as that service's DefaultSubset If empty the default\\nsubset is used.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout is the timeout for receiving an HTTP response from this\\nservice before the connection is terminated.\",\n \"type\": \"string\"\n },\n \"subsets\": {\n \"additionalProperties\": {\n \"properties\": {\n \"filter\": {\n \"description\": \"Filter is the filter expression to be used for selecting instances of the\\nrequested service. If empty all healthy instances are returned. This\\nexpression can filter on the same selectors as the Health API endpoint.\",\n \"type\": \"string\"\n },\n \"onlyPassing\": {\n \"description\": \"OnlyPassing specifies the behavior of the resolver's health check\\ninterpretation. If this is set to false, instances with checks in the\\npassing as well as the warning states will be considered healthy. If this\\nis set to true, only instances with checks in the passing state will be\\nconsidered healthy.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Subsets is map of subset name to subset definition for all usable named\\nsubsets of this service. The map key is the name of the subset and all\\nnames must be valid DNS subdomain elements.\\nThis may be empty, in which case only the unnamed default subset will\\nbe usable.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Service Resolver\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Resolver", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceRouter.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceRouter.json new file mode 100644 index 00000000000..8abaaf70a07 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceRouter.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ServiceRouter", + "schema": "{\n \"description\": \"ServiceRouter is the Schema for the servicerouters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceRouterSpec defines the desired state of ServiceRouter.\",\n \"properties\": {\n \"routes\": {\n \"description\": \"Routes are the list of routes to consider when processing L7 requests.\\nThe first route to match in the list is terminal and stops further\\nevaluation. Traffic that fails to match any of the provided routes will\\nbe routed to the default service.\",\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"description\": \"Destination controls how to proxy the matching request(s) to a service.\",\n \"properties\": {\n \"idleTimeout\": {\n \"description\": \"IdleTimeout is total amount of time permitted\\nfor the request stream to be idle.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the Consul namespace to resolve the service from instead of\\nthe current namespace. If empty the current namespace is assumed.\",\n \"type\": \"string\"\n },\n \"numRetries\": {\n \"description\": \"NumRetries is the number of times to retry the request when a retryable result occurs\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"partition\": {\n \"description\": \"Partition is the Consul partition to resolve the service from instead of\\nthe current partition. If empty the current partition is assumed.\",\n \"type\": \"string\"\n },\n \"prefixRewrite\": {\n \"description\": \"PrefixRewrite defines how to rewrite the HTTP request path before proxying\\nit to its final destination.\\nThis requires that either match.http.pathPrefix or match.http.pathExact\\nbe configured on this route.\",\n \"type\": \"string\"\n },\n \"requestHeaders\": {\n \"description\": \"Allow HTTP header manipulation to be configured.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout is the total amount of time permitted for the entire\\ndownstream request (and retries) to be processed.\",\n \"type\": \"string\"\n },\n \"responseHeaders\": {\n \"description\": \"HTTPHeaderModifiers is a set of rules for HTTP header modification that\\nshould be performed by proxies as the request passes through them. It can\\noperate on either request or response headers depending on the context in\\nwhich it is used.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"description\": \"RetryOn is a flat list of conditions for Consul to retry requests based on the response from an upstream service.\\nRefer to the valid conditions here: https://developer.hashicorp.com/consul/docs/connect/config-entries/service-router#routes-destination-retryon\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retryOnConnectFailure\": {\n \"description\": \"RetryOnConnectFailure allows for connection failure errors to trigger a retry.\",\n \"type\": \"boolean\"\n },\n \"retryOnStatusCodes\": {\n \"description\": \"RetryOnStatusCodes is a flat list of http response status codes that are eligible for retry.\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"service\": {\n \"description\": \"Service is the service to resolve instead of the default service.\\nIf empty then the default service name is used.\",\n \"type\": \"string\"\n },\n \"serviceSubset\": {\n \"description\": \"ServiceSubset is a named subset of the given service to resolve instead\\nof the one defined as that service's DefaultSubset.\\nIf empty, the default subset is used.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is a set of criteria that can match incoming L7 requests.\\nIf empty or omitted it acts as a catch-all.\",\n \"properties\": {\n \"http\": {\n \"description\": \"HTTP is a set of http-specific match criteria.\",\n \"properties\": {\n \"caseInsensitive\": {\n \"description\": \"CaseInsensitive configures PathExact and PathPrefix matches to ignore upper/lower casing.\",\n \"type\": \"boolean\"\n },\n \"header\": {\n \"description\": \"Header is a set of criteria that can match on HTTP request headers.\\nIf more than one is configured all must match for the overall match to apply.\",\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"description\": \"Exact will match if the header with the given name is this value.\",\n \"type\": \"string\"\n },\n \"invert\": {\n \"description\": \"Invert inverts the logic of the match.\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Name is the name of the header to match.\",\n \"type\": \"string\"\n },\n \"prefix\": {\n \"description\": \"Prefix will match if the header with the given name has this prefix.\",\n \"type\": \"string\"\n },\n \"present\": {\n \"description\": \"Present will match if the header with the given name is present with any value.\",\n \"type\": \"boolean\"\n },\n \"regex\": {\n \"description\": \"Regex will match if the header with the given name matches this pattern.\",\n \"type\": \"string\"\n },\n \"suffix\": {\n \"description\": \"Suffix will match if the header with the given name has this suffix.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"description\": \"Methods is a list of HTTP methods for which this match applies.\\nIf unspecified all http methods are matched.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathExact\": {\n \"description\": \"PathExact is an exact path to match on the HTTP request path.\",\n \"type\": \"string\"\n },\n \"pathPrefix\": {\n \"description\": \"PathPrefix is a path prefix to match on the HTTP request path.\",\n \"type\": \"string\"\n },\n \"pathRegex\": {\n \"description\": \"PathRegex is a regular expression to match on the HTTP request path.\",\n \"type\": \"string\"\n },\n \"queryParam\": {\n \"description\": \"QueryParam is a set of criteria that can match on HTTP query parameters.\\nIf more than one is configured all must match for the overall match to apply.\",\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"description\": \"Exact will match if the query parameter with the given name is this value.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the query parameter to match on.\",\n \"type\": \"string\"\n },\n \"present\": {\n \"description\": \"Present will match if the query parameter with the given name is present\\nwith any value.\",\n \"type\": \"boolean\"\n },\n \"regex\": {\n \"description\": \"Regex will match if the query parameter with the given name matches this pattern.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Service Router\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Router", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceSplitter.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceSplitter.json new file mode 100644 index 00000000000..8a112e06f35 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/ServiceSplitter.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "ServiceSplitter", + "schema": "{\n \"description\": \"ServiceSplitter is the Schema for the servicesplitters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ServiceSplitterSpec defines the desired state of ServiceSplitter.\",\n \"properties\": {\n \"splits\": {\n \"description\": \"Splits defines how much traffic to send to which set of service instances during a traffic split.\\nThe sum of weights across all splits must add up to 100.\",\n \"items\": {\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace is the Consul namespace to resolve the service from instead of\\nthe current namespace. If empty the current namespace is assumed.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the Consul partition to resolve the service from instead of\\nthe current partition. If empty the current partition is assumed.\",\n \"type\": \"string\"\n },\n \"requestHeaders\": {\n \"description\": \"Allow HTTP header manipulation to be configured.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaders\": {\n \"description\": \"HTTPHeaderModifiers is a set of rules for HTTP header modification that\\nshould be performed by proxies as the request passes through them. It can\\noperate on either request or response headers depending on the context in\\nwhich it is used.\",\n \"properties\": {\n \"add\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Add is a set of name -\\u003e value pairs that should be appended to the request\\nor response (i.e. allowing duplicates if the same header already exists).\",\n \"type\": \"object\"\n },\n \"remove\": {\n \"description\": \"Remove is the set of header names that should be stripped from the request\\nor response.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"set\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a set of name -\\u003e value pairs that should be added to the request or\\nresponse, overwriting any existing header values of the same name.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"Service is the service to resolve instead of the default.\",\n \"type\": \"string\"\n },\n \"serviceSubset\": {\n \"description\": \"ServiceSubset is a named subset of the given service to resolve instead of one defined\\nas that service's DefaultSubset. If empty the default subset is used.\",\n \"type\": \"string\"\n },\n \"weight\": {\n \"description\": \"Weight is a value between 0 and 100 reflecting what portion of traffic should be directed to this split.\\nThe smallest representable weight is 1/10000 or .01%.\",\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Service Splitter\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Splitter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/TCPRoute.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TCPRoute.json new file mode 100644 index 00000000000..eab48a4d7fe --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TCPRoute.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "TCPRoute", + "schema": "{\n \"description\": \"TCPRoute is the Schema for the TCP Route API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"NOTE: this should align to the GAMMA/gateway-api version, or at least be\\neasily translatable.\\n\\n\\nhttps://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io/v1alpha2.TCPRoute\\n\\n\\nThis is a Resource type.\",\n \"properties\": {\n \"parentRefs\": {\n \"description\": \"ParentRefs references the resources (usually Services) that a Route wants\\nto be attached to.\\n\\n\\nIt is invalid to reference an identical parent more than once. It is valid\\nto reference multiple distinct sections within the same parent resource.\",\n \"items\": {\n \"description\": \"NOTE: roughly equivalent to structs.ResourceReference\",\n \"properties\": {\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply all.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\\nFor north/south it should point to a Gateway.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"rules\": {\n \"description\": \"Rules are a list of TCP matchers and actions.\",\n \"items\": {\n \"properties\": {\n \"backendRefs\": {\n \"description\": \"BackendRefs defines the backend(s) where matching requests should be sent.\\nIf unspecified or invalid (refers to a non-existent resource or a Service\\nwith no endpoints), the underlying implementation MUST actively reject\\nconnection attempts to this backend. Connection rejections must respect\\nweight; if an invalid backend is requested to have 80% of connections,\\nthen 80% of connections must be rejected instead.\",\n \"items\": {\n \"properties\": {\n \"backendRef\": {\n \"properties\": {\n \"datacenter\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"For east/west this is the name of the Consul Service port to direct traffic to\\nor empty to imply using the same value as the parent ref.\\nFor north/south this is TBD.\\n\\n\\nFor more details on potential values of this field, see documentation for\\nService.ServicePort.\",\n \"type\": \"string\"\n },\n \"ref\": {\n \"description\": \"For east/west configuration, this should point to a Service.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the user-given name of the resource (e.g. the \\\"billing\\\" service).\",\n \"type\": \"string\"\n },\n \"section\": {\n \"description\": \"Section identifies which part of the resource the condition relates to.\",\n \"type\": \"string\"\n },\n \"tenancy\": {\n \"description\": \"Tenancy identifies the tenancy units (i.e. partition, namespace) in which\\nthe resource resides.\",\n \"properties\": {\n \"namespace\": {\n \"description\": \"Namespace further isolates resources within a partition.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/namespaces\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all namespaces.\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"Partition is the topmost administrative boundary within a cluster.\\nhttps://developer.hashicorp.com/consul/docs/enterprise/admin-partitions\\n\\n\\nWhen using the List and WatchList endpoints, provide the wildcard value \\\"*\\\"\\nto list resources across all partitions.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type identifies the resource's type.\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group describes the area of functionality to which this resource type\\nrelates (e.g. \\\"catalog\\\", \\\"authorization\\\").\",\n \"type\": \"string\"\n },\n \"groupVersion\": {\n \"description\": \"GroupVersion is incremented when sweeping or backward-incompatible changes\\nare made to the group's resource types.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind identifies the specific resource type within the group.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight specifies the proportion of requests forwarded to the referenced\\nbackend. This is computed as weight/(sum of all weights in this\\nBackendRefs list). For non-zero values, there may be some epsilon from the\\nexact proportion defined here depending on the precision an implementation\\nsupports. Weight is not a percentage and the sum of weights does not need\\nto equal 100.\\n\\n\\nIf only one backend is specified and it has a weight greater than 0, 100%\\nof the traffic is forwarded to that backend. If weight is set to 0, no\\ntraffic should be forwarded for this entry. If unspecified, weight defaults\\nto 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"TCP Route\",\n \"type\": \"object\"\n}", + "version": "mesh.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "TCP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/TerminatingGateway.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TerminatingGateway.json new file mode 100644 index 00000000000..c047564e8fa --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TerminatingGateway.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "TerminatingGateway", + "schema": "{\n \"description\": \"TerminatingGateway is the Schema for the terminatinggateways API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"TerminatingGatewaySpec defines the desired state of TerminatingGateway.\",\n \"properties\": {\n \"services\": {\n \"description\": \"Services is a list of service names represented by the terminating gateway.\",\n \"items\": {\n \"description\": \"A LinkedService is a service represented by a terminating gateway.\",\n \"properties\": {\n \"caFile\": {\n \"description\": \"CAFile is the optional path to a CA certificate to use for TLS connections\\nfrom the gateway to the linked service.\",\n \"type\": \"string\"\n },\n \"certFile\": {\n \"description\": \"CertFile is the optional path to a client certificate to use for TLS connections\\nfrom the gateway to the linked service.\",\n \"type\": \"string\"\n },\n \"disableAutoHostRewrite\": {\n \"description\": \"DisableAutoHostRewrite disables terminating gateways auto host rewrite feature when set to true.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"KeyFile is the optional path to a private key to use for TLS connections\\nfrom the gateway to the linked service.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the service, as defined in Consul's catalog.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"The namespace the service is registered in.\",\n \"type\": \"string\"\n },\n \"sni\": {\n \"description\": \"SNI is the optional name to specify during the TLS handshake with a linked service.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Terminating Gateway\",\n \"type\": \"object\"\n}", + "version": "consul.hashicorp.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Terminating Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/components/TrafficPermissions.json b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TrafficPermissions.json new file mode 100644 index 00000000000..f647d8a2327 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/components/TrafficPermissions.json @@ -0,0 +1,72 @@ +{ + "capabilities": null, + "component": { + "kind": "TrafficPermissions", + "schema": "{\n \"description\": \"TrafficPermissions is the Schema for the traffic-permissions API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"TrafficPermissions authorizes traffic between workloads in a Consul service mesh.\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action can be either allow or deny for the entire object. It will default to allow.\\nDeny actions are available only in Consul Enterprise.\\n\\n\\nIf action is allow, we will allow the connection if one of the rules in Rules matches, in other words, we will deny\\nall requests except for the ones that match Rules. If Consul is in default allow mode, then allow\\nactions have no effect without a deny permission as everything is allowed by default.\\n\\n\\nIf action is deny, we will deny the connection if one of the rules in Rules match, in other words,\\nwe will allow all requests except for the ones that match Rules. If Consul is default deny mode,\\nthen deny permissions have no effect without an allow permission as everything is denied by default.\\n\\n\\nAction unspecified is reserved for compatibility with the addition of future actions.\",\n \"enum\": [\n \"ACTION_ALLOW\",\n \"ACTION_DENY\",\n \"ACTION_UNKNOWN\"\n ],\n \"format\": \"int32\",\n \"type\": \"string\"\n },\n \"destination\": {\n \"description\": \"Destination is a configuration of the destination proxies\\nwhere these traffic permissions should apply.\",\n \"properties\": {\n \"identityName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"permissions\": {\n \"description\": \"Permissions is a list of permissions to match on. They are applied using OR semantics.\",\n \"items\": {\n \"description\": \"Permissions is a list of permissions to match on.\",\n \"properties\": {\n \"destinationRules\": {\n \"description\": \"DestinationRules is a list of rules to apply for matching sources in this Permission.\\nThese rules are specific to the request or connection that is going to the destination(s)\\nselected by the TrafficPermissions resource.\",\n \"items\": {\n \"description\": \"DestinationRule contains rules rules to apply to the incoming connection.\",\n \"properties\": {\n \"exclude\": {\n \"description\": \"Exclude contains a list of rules to exclude when evaluating rules for the incoming connection.\",\n \"items\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"invert\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"present\": {\n \"type\": \"boolean\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"description\": \"Methods is the list of HTTP methods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathExact\": {\n \"type\": \"string\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"pathRegex\": {\n \"type\": \"string\"\n },\n \"portNames\": {\n \"description\": \"PortNames is a list of workload ports to apply this rule to. The ports specified here\\nmust be the ports used in the connection.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"invert\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"present\": {\n \"type\": \"boolean\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"description\": \"Methods is the list of HTTP methods. If no methods are specified,\\nthis rule will apply to all methods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathExact\": {\n \"type\": \"string\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"pathRegex\": {\n \"type\": \"string\"\n },\n \"portNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is a list of sources in this traffic permission.\",\n \"items\": {\n \"description\": \"Source represents the source identity.\\nTo specify any of the wildcard sources, the specific fields need to be omitted.\\nFor example, for a wildcard namespace, identity_name should be omitted.\",\n \"properties\": {\n \"exclude\": {\n \"description\": \"Exclude is a list of sources to exclude from this source.\",\n \"items\": {\n \"description\": \"ExcludeSource is almost the same as source but it prevents the addition of\\nmatching sources.\",\n \"properties\": {\n \"identityName\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"type\": \"string\"\n },\n \"peer\": {\n \"type\": \"string\"\n },\n \"samenessGroup\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"identityName\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"type\": \"string\"\n },\n \"peer\": {\n \"type\": \"string\"\n },\n \"samenessGroup\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Traffic Permissions\",\n \"type\": \"object\"\n}", + "version": "auth.consul.hashicorp.com/v2beta1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Permissions", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "source_uri": "git://github.com/hashicorp/consul-k8s/main/control-plane/config/crd/bases", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "svgColor": "\u003csvg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"/\u003e\u003cpath d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h20v20H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cg clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"/\u003e\u003cpath d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"/\u003e\u003c/g\u003e\u003cdefs\u003e\u003cclipPath id=\"a\"\u003e\u003cpath fill=\"#fff\" d=\"M0 0h32v32H0z\"/\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/consul/v1.5.3/v1.0.0/model.json b/server/meshmodel/consul/v1.5.3/v1.0.0/model.json new file mode 100644 index 00000000000..317037c7277 --- /dev/null +++ b/server/meshmodel/consul/v1.5.3/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Consul", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#D62783", + "secondaryColor": "#ed74b4", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#e03875\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.626 12.114c-1.17 0-2.082-.94-2.082-2.147 0-1.208.911-2.148 2.082-2.148 1.17 0 2.081.94 2.081 2.148 0 1.208-.91 2.147-2.081 2.147Zm4.064-1.14a.994.994 0 0 1-.975-1.007c0-.537.423-1.007.976-1.007.52 0 .975.436.975 1.007a.994.994 0 0 1-.975 1.006Zm3.513.939a.947.947 0 0 1-1.17.704c-.521-.134-.814-.67-.684-1.208a.948.948 0 0 1 1.17-.705.985.985 0 0 1 .716 1.141s0 .034-.033.067h.001Zm-.684-2.551c-.52.134-1.04-.202-1.17-.739a1.002 1.002 0 0 1 .715-1.208c.52-.134 1.04.202 1.17.739a.843.843 0 0 1 0 .402.91.91 0 0 1-.715.806Zm3.446 2.416c-.098.536-.585.906-1.105.805a.984.984 0 0 1-.78-1.14c.097-.538.584-.907 1.105-.806.488.1.846.57.813 1.073-.032.034-.032.034-.032.068Zm-.779-2.482c-.52.1-1.008-.269-1.105-.806a.984.984 0 0 1 .78-1.14c.52-.101 1.008.268 1.106.805 0 .1.033.168 0 .268a.951.951 0 0 1-.78.873Zm-.682 5.94a.941.941 0 0 1-1.301.368 1.005 1.005 0 0 1-.358-1.342.941.941 0 0 1 1.3-.37c.326.202.521.571.489.94a1.934 1.934 0 0 1-.13.403Zm-.358-9.128a.941.941 0 0 1-1.3-.37 1.005 1.005 0 0 1 .357-1.342.941.941 0 0 1 1.3.37c.098.2.13.369.13.57a1.007 1.007 0 0 1-.487.772\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.658 20c-2.601 0-5.008-1.04-6.861-2.92A10.35 10.35 0 0 1 0 10c0-2.685 1.008-5.168 2.83-7.081C4.65 1.04 7.09 0 9.657 0a9.4 9.4 0 0 1 5.886 2.047l-1.203 1.61c-1.364-1.071-2.99-1.642-4.68-1.642-2.049 0-4 .839-5.463 2.349C2.733 5.873 1.952 7.853 1.952 10a8.08 8.08 0 0 0 2.277 5.638 7.5 7.5 0 0 0 5.463 2.315 7.4 7.4 0 0 0 4.683-1.644l1.17 1.61C13.855 19.261 11.805 20 9.66 20Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h20v20H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#a)\" fill=\"#fff\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.401 19.383c-1.873 0-3.33-1.503-3.33-3.436s1.457-3.436 3.33-3.436 3.33 1.503 3.33 3.436-1.457 3.436-3.33 3.436Zm6.504-1.825c-.832 0-1.56-.698-1.56-1.611 0-.86.675-1.61 1.56-1.61.832 0 1.561.697 1.561 1.61 0 .913-.728 1.61-1.56 1.61Zm5.62 1.503a1.516 1.516 0 0 1-1.874 1.126c-.832-.214-1.3-1.073-1.092-1.932a1.516 1.516 0 0 1 1.873-1.128c.779.214 1.3.966 1.144 1.825 0 0 0 .054-.052.107v.002Zm-1.095-4.082c-.833.214-1.665-.323-1.873-1.182a1.604 1.604 0 0 1 1.145-1.933c.832-.215 1.664.323 1.872 1.182.052.215.052.43 0 .644-.052.59-.468 1.128-1.144 1.289Zm5.515 3.865c-.157.859-.938 1.45-1.77 1.289a1.574 1.574 0 0 1-1.248-1.826c.155-.858.936-1.45 1.768-1.288.781.16 1.354.912 1.302 1.718-.052.053-.052.053-.052.107Zm-1.247-3.971c-.832.161-1.613-.43-1.769-1.288a1.575 1.575 0 0 1 1.25-1.826c.832-.161 1.612.43 1.768 1.289 0 .16.052.268 0 .429-.052.698-.572 1.289-1.249 1.396Zm-1.092 9.503c-.416.752-1.353 1.02-2.082.59-.728-.429-.988-1.395-.572-2.147.416-.752 1.353-1.02 2.081-.59.52.322.833.912.78 1.503-.051.215-.103.43-.207.644Zm-.573-14.603c-.728.43-1.665.16-2.08-.591-.417-.752-.157-1.718.572-2.148.728-.43 1.664-.16 2.08.591.157.322.209.59.209.913-.052.483-.312.966-.78 1.235\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.453 32c-4.162 0-8.013-1.664-10.978-4.67A16.56 16.56 0 0 1 0 16c0-4.296 1.613-8.27 4.527-11.33C7.44 1.664 11.343 0 15.453 0c3.434 0 6.712 1.127 9.418 3.276l-1.924 2.576c-2.186-1.717-4.788-2.63-7.493-2.63-3.278 0-6.4 1.343-8.741 3.759-2.34 2.416-3.59 5.584-3.59 9.02 0 3.382 1.301 6.604 3.643 9.02 2.341 2.415 5.411 3.704 8.741 3.704 2.758 0 5.36-.913 7.492-2.63l1.874 2.576c-2.706 2.147-5.984 3.328-9.418 3.328l-.002.001Z\"\u003e\u003c/path\u003e\u003c/g\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"a\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"M0 0h32v32H0z\"\u003e\u003c/path\u003e\u003c/clipPath\u003e\u003c/defs\u003e\u003c/svg\u003e" + }, + "model": { + "version": "v1.5.3" + }, + "name": "consul", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgent.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgent.json new file mode 100644 index 00000000000..a8d3bdecc48 --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgent.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogAgent", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"features\": {\n \"properties\": {\n \"admissionController\": {\n \"properties\": {\n \"agentCommunicationMode\": {\n \"type\": \"string\"\n },\n \"agentSidecarInjection\": {\n \"properties\": {\n \"clusterAgentCommunicationEnabled\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"image\": {\n \"properties\": {\n \"jmxEnabled\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"pullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"profiles\": {\n \"items\": {\n \"properties\": {\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"provider\": {\n \"type\": \"string\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"selectors\": {\n \"items\": {\n \"properties\": {\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"objectSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"cwsInstrumentation\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"mode\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"failurePolicy\": {\n \"type\": \"string\"\n },\n \"mutateUnlabelled\": {\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"webhookName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"apm\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"hostPortConfig\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"instrumentation\": {\n \"properties\": {\n \"disabledNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"enabledNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"languageDetection\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"libVersions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"unixDomainSocketConfig\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"asm\": {\n \"properties\": {\n \"iast\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sca\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"threats\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoscaling\": {\n \"properties\": {\n \"workload\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"clusterChecks\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"useClusterChecksRunners\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cspm\": {\n \"properties\": {\n \"checkInterval\": {\n \"type\": \"string\"\n },\n \"customBenchmarks\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"hostBenchmarks\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"cws\": {\n \"properties\": {\n \"customPolicies\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"network\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"remoteConfiguration\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"securityProfiles\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"syscallMonitorEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"dogstatsd\": {\n \"properties\": {\n \"hostPortConfig\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"mapperProfiles\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"originDetectionEnabled\": {\n \"type\": \"boolean\"\n },\n \"tagCardinality\": {\n \"type\": \"string\"\n },\n \"unixDomainSocketConfig\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ebpfCheck\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"eventCollection\": {\n \"properties\": {\n \"collectKubernetesEvents\": {\n \"type\": \"boolean\"\n },\n \"collectedEventTypes\": {\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"type\": \"string\"\n },\n \"reasons\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"kind\",\n \"reasons\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"unbundleEvents\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"externalMetricsServer\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"endpoint\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"apiKey\": {\n \"type\": \"string\"\n },\n \"apiSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n },\n \"appKey\": {\n \"type\": \"string\"\n },\n \"appSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"registerAPIService\": {\n \"type\": \"boolean\"\n },\n \"useDatadogMetrics\": {\n \"type\": \"boolean\"\n },\n \"wpaController\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"helmCheck\": {\n \"properties\": {\n \"collectEvents\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"valuesAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kubeStateMetricsCore\": {\n \"properties\": {\n \"conf\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"liveContainerCollection\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"liveProcessCollection\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"scrubProcessArguments\": {\n \"type\": \"boolean\"\n },\n \"stripProcessArguments\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logCollection\": {\n \"properties\": {\n \"containerCollectAll\": {\n \"type\": \"boolean\"\n },\n \"containerCollectUsingFiles\": {\n \"type\": \"boolean\"\n },\n \"containerLogsPath\": {\n \"type\": \"string\"\n },\n \"containerSymlinksPath\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"openFilesLimit\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"podLogsPath\": {\n \"type\": \"string\"\n },\n \"tempStoragePath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"npm\": {\n \"properties\": {\n \"collectDNSStats\": {\n \"type\": \"boolean\"\n },\n \"enableConntrack\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"oomKill\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"orchestratorExplorer\": {\n \"properties\": {\n \"conf\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"customResources\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"ddUrl\": {\n \"type\": \"string\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"extraTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"scrubContainers\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"otlp\": {\n \"properties\": {\n \"receiver\": {\n \"properties\": {\n \"protocols\": {\n \"properties\": {\n \"grpc\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"endpoint\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"http\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"endpoint\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"processDiscovery\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheusScrape\": {\n \"properties\": {\n \"additionalConfigs\": {\n \"type\": \"string\"\n },\n \"enableServiceEndpoints\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"version\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"remoteConfiguration\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sbom\": {\n \"properties\": {\n \"containerImage\": {\n \"properties\": {\n \"analyzers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"overlayFSDirectScan\": {\n \"type\": \"boolean\"\n },\n \"uncompressedLayersSupport\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"host\": {\n \"properties\": {\n \"analyzers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpQueueLength\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"usm\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"global\": {\n \"properties\": {\n \"clusterAgentToken\": {\n \"type\": \"string\"\n },\n \"clusterAgentTokenSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"containerStrategy\": {\n \"type\": \"string\"\n },\n \"credentials\": {\n \"properties\": {\n \"apiKey\": {\n \"type\": \"string\"\n },\n \"apiSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n },\n \"appKey\": {\n \"type\": \"string\"\n },\n \"appSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"criSocketPath\": {\n \"type\": \"string\"\n },\n \"disableNonResourceRules\": {\n \"type\": \"boolean\"\n },\n \"dockerSocketPath\": {\n \"type\": \"string\"\n },\n \"endpoint\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"apiKey\": {\n \"type\": \"string\"\n },\n \"apiSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n },\n \"appKey\": {\n \"type\": \"string\"\n },\n \"appSecret\": {\n \"properties\": {\n \"keyName\": {\n \"type\": \"string\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"fips\": {\n \"properties\": {\n \"customFIPSConfig\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"image\": {\n \"properties\": {\n \"jmxEnabled\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"pullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"localAddress\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portRange\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"useHTTPS\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"kubelet\": {\n \"properties\": {\n \"agentCAPath\": {\n \"type\": \"string\"\n },\n \"host\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"hostCAPath\": {\n \"type\": \"string\"\n },\n \"tlsVerify\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"localService\": {\n \"properties\": {\n \"forceEnableLocalService\": {\n \"type\": \"boolean\"\n },\n \"nameOverride\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"logLevel\": {\n \"type\": \"string\"\n },\n \"namespaceAnnotationsAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespaceLabelsAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"networkPolicy\": {\n \"properties\": {\n \"create\": {\n \"type\": \"boolean\"\n },\n \"dnsSelectorEndpoints\": {\n \"items\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"flavor\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeLabelsAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"originDetectionUnified\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"podAnnotationsAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"podLabelsAsTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"site\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n }\n },\n \"type\": \"object\"\n },\n \"override\": {\n \"additionalProperties\": {\n \"properties\": {\n \"affinity\": {\n \"properties\": {\n \"nodeAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"preference\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"items\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"containers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"appArmorProfileName\": {\n \"type\": \"string\"\n },\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"healthPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"logLevel\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompConfig\": {\n \"properties\": {\n \"customProfile\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"customRootPath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\",\n \"mountPath\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"createRbac\": {\n \"type\": \"boolean\"\n },\n \"customConfigurations\": {\n \"additionalProperties\": {\n \"properties\": {\n \"configData\": {\n \"type\": \"string\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"dnsConfig\": {\n \"properties\": {\n \"nameservers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"type\": \"string\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"extraChecksd\": {\n \"properties\": {\n \"configDataMap\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extraConfd\": {\n \"properties\": {\n \"configDataMap\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"key\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"type\": \"boolean\"\n },\n \"image\": {\n \"properties\": {\n \"jmxEnabled\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"pullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"priorityClassName\": {\n \"type\": \"string\"\n },\n \"replicas\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"securityContext\": {\n \"properties\": {\n \"fsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"type\": \"string\"\n },\n \"tolerations\": {\n \"items\": {\n \"properties\": {\n \"effect\": {\n \"type\": \"string\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"updateStrategy\": {\n \"properties\": {\n \"rollingUpdate\": {\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumes\": {\n \"items\": {\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"properties\": {\n \"cachingMode\": {\n \"type\": \"string\"\n },\n \"diskName\": {\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"properties\": {\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n },\n \"shareName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"properties\": {\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"properties\": {\n \"medium\": {\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"properties\": {\n \"datasetName\": {\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"revision\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"properties\": {\n \"endpoints\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"type\": \"string\"\n },\n \"iqn\": {\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nfs\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"server\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"properties\": {\n \"claimName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"pdID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"properties\": {\n \"audience\": {\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"tenant\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n },\n \"volume\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"keyring\": {\n \"type\": \"string\"\n },\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"gateway\": {\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"type\": \"string\"\n },\n \"system\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog Agent\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v2alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog Agent", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgentProfile.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgentProfile.json new file mode 100644 index 00000000000..71150659dd0 --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogAgentProfile.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogAgentProfile", + "schema": "{\n \"description\": \"DatadogAgentProfile is the Schema for the datadogagentprofiles API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DatadogAgentProfileSpec defines the desired state of DatadogAgentProfile\",\n \"properties\": {\n \"config\": {\n \"properties\": {\n \"override\": {\n \"additionalProperties\": {\n \"properties\": {\n \"containers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"env\": {\n \"description\": \"Specify additional environment variables in the container.\\nSee also: https://docs.datadoghq.com/agent/guide/environment-variables/\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"resources\": {\n \"description\": \"Specify the Request and Limits of the pods.\\nTo get guaranteed QoS class, specify requests and limits equal.\\nSee also: http://kubernetes.io/docs/user-guide/compute-resources/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": \"Configure the basic configurations for an Agent container\\nValid Agent container names are: `agent`\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels provide labels that are added to the Datadog Agent pods.\",\n \"type\": \"object\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and\\n\\\"system-cluster-critical\\\" are two special keywords which indicate the\\nhighest priorities with the former being the highest priority. Any other\\nname must be defined by creating a PriorityClass object with that name.\\nIf not specified, the pod priority will be default or zero if there is no\\ndefault.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"profileAffinity\": {\n \"properties\": {\n \"profileNodeAffinity\": {\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog Agent Profile\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog Agent Profile", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMetric.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMetric.json new file mode 100644 index 00000000000..dd030578d13 --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMetric.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogMetric", + "schema": "{\n \"description\": \"DatadogMetric allows autoscaling on arbitrary Datadog query\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DatadogMetricSpec defines the desired state of DatadogMetric\",\n \"properties\": {\n \"externalMetricName\": {\n \"description\": \"ExternalMetricName is reserved for internal use\",\n \"type\": \"string\"\n },\n \"maxAge\": {\n \"description\": \"MaxAge provides the max age for the metric query (overrides the default setting\\n`external_metrics_provider.max_age`)\",\n \"type\": \"string\"\n },\n \"query\": {\n \"description\": \"Query is the raw datadog query\",\n \"type\": \"string\"\n },\n \"timeWindow\": {\n \"description\": \"TimeWindow provides the time window for the metric query, defaults to MaxAge.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog Metric\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog Metric", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMonitor.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMonitor.json new file mode 100644 index 00000000000..386b4e3ed4f --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogMonitor.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogMonitor", + "schema": "{\n \"description\": \"DatadogMonitor allows to define and manage Monitors from your Kubernetes Cluster\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DatadogMonitorSpec defines the desired state of DatadogMonitor\",\n \"properties\": {\n \"controllerOptions\": {\n \"description\": \"ControllerOptions are the optional parameters in the DatadogMonitor controller\",\n \"properties\": {\n \"disableRequiredTags\": {\n \"description\": \"DisableRequiredTags disables the automatic addition of required tags to monitors.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"message\": {\n \"description\": \"Message is a message to include with notifications for this monitor\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the monitor name\",\n \"type\": \"string\"\n },\n \"options\": {\n \"description\": \"Options are the optional parameters associated with your monitor\",\n \"properties\": {\n \"enableLogsSample\": {\n \"description\": \"A Boolean indicating whether to send a log sample when the log monitor triggers.\",\n \"type\": \"boolean\"\n },\n \"escalationMessage\": {\n \"description\": \"A message to include with a re-notification.\",\n \"type\": \"string\"\n },\n \"evaluationDelay\": {\n \"description\": \"Time (in seconds) to delay evaluation, as a non-negative integer. For example, if the value is set to 300 (5min),\\nthe timeframe is set to last_5m and the time is 7:00, the monitor evaluates data from 6:50 to 6:55.\\nThis is useful for AWS CloudWatch and other backfilled metrics to ensure the monitor always has data during evaluation.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"groupbySimpleMonitor\": {\n \"description\": \"A Boolean indicating whether the log alert monitor triggers a single alert or multiple alerts when any group breaches a threshold.\",\n \"type\": \"boolean\"\n },\n \"includeTags\": {\n \"description\": \"A Boolean indicating whether notifications from this monitor automatically inserts its triggering tags into the title.\",\n \"type\": \"boolean\"\n },\n \"locked\": {\n \"description\": \"DEPRECATED: Whether or not the monitor is locked (only editable by creator and admins). Use `restricted_roles` instead.\",\n \"type\": \"boolean\"\n },\n \"newGroupDelay\": {\n \"description\": \"Time (in seconds) to allow a host to boot and applications to fully start before starting the evaluation of\\nmonitor results. Should be a non negative integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"noDataTimeframe\": {\n \"description\": \"The number of minutes before a monitor notifies after data stops reporting. Datadog recommends at least 2x the\\nmonitor timeframe for metric alerts or 2 minutes for service checks. If omitted, 2x the evaluation timeframe\\nis used for metric alerts, and 24 hours is used for service checks.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"notificationPresetName\": {\n \"description\": \"An enum that toggles the display of additional content sent in the monitor notification.\",\n \"type\": \"string\"\n },\n \"notifyAudit\": {\n \"description\": \"A Boolean indicating whether tagged users are notified on changes to this monitor.\",\n \"type\": \"boolean\"\n },\n \"notifyBy\": {\n \"description\": \"A string indicating the granularity a monitor alerts on. Only available for monitors with groupings.\\nFor instance, a monitor grouped by cluster, namespace, and pod can be configured to only notify on each new\\ncluster violating the alert conditions by setting notify_by to [\\\"cluster\\\"]. Tags mentioned in notify_by must\\nbe a subset of the grouping tags in the query. For example, a query grouped by cluster and namespace cannot\\nnotify on region. Setting notify_by to [*] configures the monitor to notify as a simple-alert.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"notifyNoData\": {\n \"description\": \"A Boolean indicating whether this monitor notifies when data stops reporting.\",\n \"type\": \"boolean\"\n },\n \"onMissingData\": {\n \"description\": \"An enum that controls how groups or monitors are treated if an evaluation does not return data points.\\nThe default option results in different behavior depending on the monitor query type.\\nFor monitors using Count queries, an empty monitor evaluation is treated as 0 and is compared to the threshold conditions.\\nFor monitors using any query type other than Count, for example Gauge, Measure, or Rate, the monitor shows the last known status.\\nThis option is only available for APM Trace Analytics, Audit Trail, CI, Error Tracking, Event, Logs, and RUM monitors\",\n \"type\": \"string\"\n },\n \"renotifyInterval\": {\n \"description\": \"The number of minutes after the last notification before a monitor re-notifies on the current status.\\nIt only re-notifies if it’s not resolved.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"renotifyOccurrences\": {\n \"description\": \"The number of times re-notification messages should be sent on the current status at the provided re-notification interval.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"renotifyStatuses\": {\n \"description\": \"The types of statuses for which re-notification messages should be sent. Valid values are alert, warn, no data.\",\n \"items\": {\n \"description\": \"MonitorRenotifyStatusType The different statuses for which renotification is supported.\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"requireFullWindow\": {\n \"description\": \"A Boolean indicating whether this monitor needs a full window of data before it’s evaluated. We highly\\nrecommend you set this to false for sparse metrics, otherwise some evaluations are skipped. Default is false.\",\n \"type\": \"boolean\"\n },\n \"thresholdWindows\": {\n \"description\": \"A struct of the alerting time window options.\",\n \"properties\": {\n \"recoveryWindow\": {\n \"description\": \"Describes how long an anomalous metric must be normal before the alert recovers.\",\n \"type\": \"string\"\n },\n \"triggerWindow\": {\n \"description\": \"Describes how long a metric must be anomalous before an alert triggers.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"thresholds\": {\n \"description\": \"A struct of the different monitor threshold values.\",\n \"properties\": {\n \"critical\": {\n \"description\": \"The monitor CRITICAL threshold.\",\n \"type\": \"string\"\n },\n \"criticalRecovery\": {\n \"description\": \"The monitor CRITICAL recovery threshold.\",\n \"type\": \"string\"\n },\n \"ok\": {\n \"description\": \"The monitor OK threshold.\",\n \"type\": \"string\"\n },\n \"unknown\": {\n \"description\": \"The monitor UNKNOWN threshold.\",\n \"type\": \"string\"\n },\n \"warning\": {\n \"description\": \"The monitor WARNING threshold.\",\n \"type\": \"string\"\n },\n \"warningRecovery\": {\n \"description\": \"The monitor WARNING recovery threshold.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeoutH\": {\n \"description\": \"The number of hours of the monitor not reporting data before it automatically resolves from a triggered state.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"priority\": {\n \"description\": \"Priority is an integer from 1 (high) to 5 (low) indicating alert severity\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"query\": {\n \"description\": \"Query is the Datadog monitor query\",\n \"type\": \"string\"\n },\n \"restrictedRoles\": {\n \"description\": \"RestrictedRoles is a list of unique role identifiers to define which roles are allowed to edit the monitor.\\n`restricted_roles` is the successor of `locked`. For more information about `locked` and `restricted_roles`,\\nsee the [monitor options docs](https://docs.datadoghq.com/monitors/guide/monitor_api_options/#permissions-options).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"tags\": {\n \"description\": \"Tags is the monitor tags associated with your monitor\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"type\": {\n \"description\": \"Type is the monitor type\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog Monitor\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog Monitor", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogPodAutoscaler.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogPodAutoscaler.json new file mode 100644 index 00000000000..38fc9c82c1d --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogPodAutoscaler.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogPodAutoscaler", + "schema": "{\n \"description\": \"DatadogPodAutoscaler is the Schema for the datadogpodautoscalers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"DatadogPodAutoscalerSpec defines the desired state of DatadogPodAutoscaler\",\n \"properties\": {\n \"constraints\": {\n \"description\": \"Constraints defines constraints that should always be respected.\",\n \"properties\": {\n \"containers\": {\n \"description\": \"Containers defines constraints for the containers.\",\n \"items\": {\n \"description\": \"DatadogPodAutoscalerContainerConstraints defines constraints that should always be respected for a container.\\nIf no constraints are set, it enables resources scaling for all containers without any constraints.\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Enabled false allows to disable resources autoscaling for the container. Default to true.\",\n \"type\": \"boolean\"\n },\n \"limits\": {\n \"description\": \"Limits defines the constraints for the limits of the container.\",\n \"properties\": {\n \"maxAllowed\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"MaxAllowed is the upper limit for the requests of the container.\",\n \"type\": \"object\"\n },\n \"minAllowed\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"MinAllowed is the lower limit for the requests of the container.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the name of the container. Can be \\\"*\\\" to apply to all containers.\",\n \"type\": \"string\"\n },\n \"requests\": {\n \"description\": \"Requests defines the constraints for the requests of the container.\",\n \"properties\": {\n \"maxAllowed\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"MaxAllowed is the upper limit for the requests of the container.\",\n \"type\": \"object\"\n },\n \"minAllowed\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"MinAllowed is the lower limit for the requests of the container.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"maxReplicas\": {\n \"description\": \"MaxReplicas is the upper limit for the number of POD replicas. Needs to be \\u003e= minReplicas.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minReplicas\": {\n \"description\": \"MinReplicas is the lower limit for the number of POD replicas. Needs to be \\u003e= 1. Default to 1.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"maxReplicas\"\n ],\n \"type\": \"object\"\n },\n \"owner\": {\n \"description\": \"Owner defines the source of truth for this object (local or remote)\\nValue needs to be set when a DatadogPodAutoscaler object is created.\",\n \"enum\": [\n \"Local\",\n \"Remote\"\n ],\n \"type\": \"string\"\n },\n \"policy\": {\n \"default\": {},\n \"description\": \"Policy defines how recommendations should be applied.\",\n \"properties\": {\n \"applyMode\": {\n \"default\": \"All\",\n \"description\": \"ApplyMode determines recommendations that should be applied by the controller:\\n- All: Apply all recommendations (regular and manual).\\n- Manual: Apply only manual recommendations (recommendations manually validated by user in the Datadog app).\\n- None: Prevent the controller to apply any recommendations.\\nIt's also possible to selectively deactivate upscale, downscale or update actions thanks to the `Upscale`, `Downscale` and `Update` fields.\",\n \"enum\": [\n \"All\",\n \"Manual\",\n \"None\"\n ],\n \"type\": \"string\"\n },\n \"downscale\": {\n \"description\": \"Downscale defines the policy to scale down the target resource.\",\n \"properties\": {\n \"rules\": {\n \"description\": \"Rules is a list of potential scaling polices which can be used during scaling.\\nAt least one policy must be specified, otherwise the DatadogPodAutoscalerScalingPolicy will be discarded as invalid\",\n \"items\": {\n \"description\": \"DatadogPodAutoscalerScalingRule define rules for horizontal that should be true for a certain amount of time.\",\n \"properties\": {\n \"match\": {\n \"description\": \"Match defines if the rule should be considered or not in the calculation.\\nDefault to Always if not set.\",\n \"enum\": [\n \"Always\",\n \"IfScalingEvent\"\n ],\n \"type\": \"string\"\n },\n \"periodSeconds\": {\n \"description\": \"PeriodSeconds specifies the window of time for which the policy should hold true.\\nPeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).\",\n \"format\": \"int32\",\n \"maximum\": 1800,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"type\": {\n \"description\": \"Type is used to specify the scaling policy.\",\n \"enum\": [\n \"Pods\",\n \"Percent\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value contains the amount of change which is permitted by the policy.\\nSetting it to 0 will prevent any scaling in this direction and should not be used unless Match is set to IfScalingEvent.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"periodSeconds\",\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"strategy\": {\n \"description\": \"Strategy is used to specify which policy should be used.\\nIf not set, the default value Max is used.\",\n \"enum\": [\n \"Max\",\n \"Min\",\n \"Disabled\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"update\": {\n \"description\": \"Update defines the policy to update target resource.\",\n \"properties\": {\n \"strategy\": {\n \"description\": \"Mode defines the mode of the update policy.\",\n \"enum\": [\n \"Auto\",\n \"Disabled\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"upscale\": {\n \"description\": \"Upscale defines the policy to scale up the target resource.\",\n \"properties\": {\n \"rules\": {\n \"description\": \"Rules is a list of potential scaling polices which can be used during scaling.\\nAt least one policy must be specified, otherwise the DatadogPodAutoscalerScalingPolicy will be discarded as invalid\",\n \"items\": {\n \"description\": \"DatadogPodAutoscalerScalingRule define rules for horizontal that should be true for a certain amount of time.\",\n \"properties\": {\n \"match\": {\n \"description\": \"Match defines if the rule should be considered or not in the calculation.\\nDefault to Always if not set.\",\n \"enum\": [\n \"Always\",\n \"IfScalingEvent\"\n ],\n \"type\": \"string\"\n },\n \"periodSeconds\": {\n \"description\": \"PeriodSeconds specifies the window of time for which the policy should hold true.\\nPeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).\",\n \"format\": \"int32\",\n \"maximum\": 1800,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"type\": {\n \"description\": \"Type is used to specify the scaling policy.\",\n \"enum\": [\n \"Pods\",\n \"Percent\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value contains the amount of change which is permitted by the policy.\\nSetting it to 0 will prevent any scaling in this direction and should not be used unless Match is set to IfScalingEvent.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"periodSeconds\",\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"strategy\": {\n \"description\": \"Strategy is used to specify which policy should be used.\\nIf not set, the default value Max is used.\",\n \"enum\": [\n \"Max\",\n \"Min\",\n \"Disabled\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"remoteVersion\": {\n \"description\": \"RemoteVersion is the version of the .Spec currently store in this object.\\nOnly set if the owner is Remote.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is the reference to the resource to scale.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"apiVersion is the API version of the referent\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"targets\": {\n \"description\": \"Targets are objectives to reach and maintain for the target resource.\\nDefault to a single target to maintain 80% POD CPU utilization.\",\n \"items\": {\n \"description\": \"DatadogPodAutoscalerTarget defines the objectives to reach and maintain for the target resource.\",\n \"properties\": {\n \"containerResource\": {\n \"description\": \"ContainerResource allows to set a container-level resource target.\",\n \"properties\": {\n \"container\": {\n \"description\": \"Container is the name of the container.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the resource.\",\n \"enum\": [\n \"cpu\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of the target.\",\n \"properties\": {\n \"absolute\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Absolute defines the absolute value of the target (for instance 500 millicores).\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": {\n \"description\": \"Type specifies how the value is expressed (Absolute or Utilization).\",\n \"type\": \"string\"\n },\n \"utilization\": {\n \"description\": \"Utilization defines a percentage of the target compared to requested resource\",\n \"format\": \"int32\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"container\",\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"podResource\": {\n \"description\": \"PodResource allows to set a POD-level resource target.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the resource.\",\n \"enum\": [\n \"cpu\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of the target.\",\n \"properties\": {\n \"absolute\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Absolute defines the absolute value of the target (for instance 500 millicores).\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": {\n \"description\": \"Type specifies how the value is expressed (Absolute or Utilization).\",\n \"type\": \"string\"\n },\n \"utilization\": {\n \"description\": \"Utilization defines a percentage of the target compared to requested resource\",\n \"format\": \"int32\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type sets the type of the target.\",\n \"enum\": [\n \"PodResource\",\n \"ContainerResource\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"owner\",\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog Pod Autoscaler\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog Pod Autoscaler", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogSLO.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogSLO.json new file mode 100644 index 00000000000..8f91eb917ca --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/DatadogSLO.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DatadogSLO", + "schema": "{\n \"description\": \"DatadogSLO allows a user to define and manage datadog SLOs from Kubernetes cluster.\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"controllerOptions\": {\n \"description\": \"ControllerOptions are the optional parameters in the DatadogSLO controller\",\n \"properties\": {\n \"disableRequiredTags\": {\n \"description\": \"DisableRequiredTags disables the automatic addition of required tags to SLOs.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": {\n \"description\": \"Description is a user-defined description of the service level objective.\\nAlways included in service level objective responses (but may be null). Optional in create/update requests.\",\n \"type\": \"string\"\n },\n \"groups\": {\n \"description\": \"Groups is a list of (up to 100) monitor groups that narrow the scope of a monitor service level objective.\\nIncluded in service level objective responses if it is not empty.\\nOptional in create/update requests for monitor service level objectives, but may only be used when the length of the monitor_ids field is one.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"monitorIDs\": {\n \"description\": \"MonitorIDs is a list of monitor IDs that defines the scope of a monitor service level objective. Required if type is monitor.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"name\": {\n \"description\": \"Name is the name of the service level objective.\",\n \"type\": \"string\"\n },\n \"query\": {\n \"description\": \"Query is the query for a metric-based SLO. Required if type is metric.\\nNote that only the `sum by` aggregator is allowed, which sums all request counts. `Average`, `max`, nor `min` request aggregators are not supported.\",\n \"properties\": {\n \"denominator\": {\n \"description\": \"Denominator is a Datadog metric query for total (valid) events.\",\n \"type\": \"string\"\n },\n \"numerator\": {\n \"description\": \"Numerator is a Datadog metric query for good events.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"denominator\",\n \"numerator\"\n ],\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Tags is a list of tags to associate with your service level objective.\\nThis can help you categorize and filter service level objectives in the service level objectives page of the UI.\\nNote: it's not currently possible to filter by these tags when querying via the API.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"targetThreshold\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"TargetThreshold is the target threshold such that when the service level indicator is above this threshold over the given timeframe, the objective is being met.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"timeframe\": {\n \"description\": \"The SLO time window options.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the service level objective.\",\n \"type\": \"string\"\n },\n \"warningThreshold\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"WarningThreshold is a optional warning threshold such that when the service level indicator is below this value for the given threshold, but above the target threshold, the objective appears in a \\\"warning\\\" state. This value must be greater than the target threshold.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"name\",\n \"targetThreshold\",\n \"timeframe\",\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Datadog SLO\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Datadog SLO", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSet.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSet.json new file mode 100644 index 00000000000..d268ef04a4e --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSet.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ExtendedDaemonSet", + "schema": "{\n \"description\": \"ExtendedDaemonSet is the Schema for the extendeddaemonsets API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ExtendedDaemonSetSpec defines the desired state of ExtendedDaemonSet\",\n \"properties\": {\n \"selector\": {\n \"description\": \"A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"strategy\": {\n \"description\": \"Daemonset deployment strategy.\",\n \"properties\": {\n \"canary\": {\n \"description\": \"Canary deployment configuration\",\n \"properties\": {\n \"autoFail\": {\n \"description\": \"ExtendedDaemonSetSpecStrategyCanaryAutoFail defines the canary deployment AutoFail parameters of the ExtendedDaemonSet.\",\n \"properties\": {\n \"canaryTimeout\": {\n \"description\": \"CanaryTimeout defines the maximum duration of a Canary, after which the Canary deployment is autofailed. This is a safeguard against lengthy Canary pauses. There is no default value.\",\n \"type\": \"string\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables AutoFail. Default value is true.\",\n \"type\": \"boolean\"\n },\n \"maxRestarts\": {\n \"description\": \"MaxRestarts defines the number of tolerable (per pod) Canary pod restarts after which the Canary deployment is autofailed. Default value is 5.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRestartsDuration\": {\n \"description\": \"MaxRestartsDuration defines the maximum duration of tolerable Canary pod restarts after which the Canary deployment is autofailed. There is no default value.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"autoPause\": {\n \"description\": \"ExtendedDaemonSetSpecStrategyCanaryAutoPause defines the canary deployment AutoPause parameters of the ExtendedDaemonSet.\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Enabled enables AutoPause. Default value is true.\",\n \"type\": \"boolean\"\n },\n \"maxRestarts\": {\n \"description\": \"MaxRestarts defines the number of tolerable (per pod) Canary pod restarts after which the Canary deployment is autopaused. Default value is 2.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxSlowStartDuration\": {\n \"description\": \"MaxSlowStartDuration defines the maximum slow start duration for a pod (stuck in Creating state) after which the Canary deployment is autopaused. There is no default value.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"duration\": {\n \"type\": \"string\"\n },\n \"noRestartsDuration\": {\n \"description\": \"NoRestartsDuration defines min duration since last restart to end the canary phase.\",\n \"type\": \"string\"\n },\n \"nodeAntiAffinityKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"nodeSelector\": {\n \"description\": \"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"replicas\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"validationMode\": {\n \"description\": \"ValidationMode used to configure how a canary deployment is validated. Possible values are 'auto' (default) and 'manual'\",\n \"enum\": [\n \"auto\",\n \"manual\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"reconcileFrequency\": {\n \"description\": \"ReconcileFrequency use to configure how often the ExtendedDeamonset will be fully reconcile, default is 10sec.\",\n \"type\": \"string\"\n },\n \"rollingUpdate\": {\n \"description\": \"ExtendedDaemonSetSpecStrategyRollingUpdate defines the rolling update deployment strategy of ExtendedDaemonSet.\",\n \"properties\": {\n \"maxParallelPodCreation\": {\n \"description\": \"The maxium number of pods created in parallel. Default value is 250.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPodSchedulerFailure\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MaxPodSchedulerFailure the maxinum number of not scheduled on its Node due to a scheduler failure: resource constraints. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"slowStartAdditiveIncrease\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"SlowStartAdditiveIncrease Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Default value is 5.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"slowStartIntervalDuration\": {\n \"description\": \"SlowStartIntervalDuration the duration between to 2 Default value is 1min.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"description\": \"An object that describes the pod that will be created. The ExtendedDaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\",\n \"type\": \"string\"\n },\n \"creationTimestamp\": {\n \"description\": \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"deletionGracePeriodSeconds\": {\n \"description\": \"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"deletionTimestamp\": {\n \"description\": \"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"type\": \"string\"\n },\n \"finalizers\": {\n \"description\": \"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"generation\": {\n \"description\": \"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"managedFields\": {\n \"description\": \"ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \\\"ci-cd\\\". The set of fields is always in the version that the workflow used when modifying the object.\",\n \"items\": {\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\",\n \"items\": {\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resourceVersion\": {\n \"description\": \"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"selfLink\": {\n \"description\": \"SelfLink is a URL representing this object. Populated by the system. Read-only.\\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"description\": \"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"description\": \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is beta-level and available on clusters that haven't disabled the EphemeralContainers feature gate.\",\n \"items\": {\n \"description\": \"An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation. \\n To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted. \\n This is a beta feature available on clusters that haven't disabled the EphemeralContainers feature gate.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Lifecycle is not allowed for ephemeral containers.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"Ports are not allowed for ephemeral containers.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"description\": \"If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. \\n The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.\",\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set. \\n If the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions \\n If the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup This is an alpha field and requires the IdentifyPodOS feature\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature.\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class This is a beta feature as of Kubernetes v1.14.\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \\n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \\n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"description\": \"If specified, the fully qualified Pod hostname will be \\\"\\u003chostname\\u003e.\\u003csubdomain\\u003e.\\u003cpod namespace\\u003e.svc.\\u003ccluster domain\\u003e\\\". If not specified, the pod will not have a domainname at all.\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. It's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assignment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumes\": {\n \"description\": \"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"The Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"The URI the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"Share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"Optional: points to a secret object containing parameters used to connect to OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeID\": {\n \"description\": \"volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"ConfigMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csi\": {\n \"description\": \"CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"Specifies a read-only configuration for the volume. Defaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"DownwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"What type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \\n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \\n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \\n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \\n A pod can use both types of ephemeral volumes and persistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where `\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \\n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \\n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \\n Required, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the AnyVolumeDataSource feature gate is enabled, this field will always have the same contents as the DataSourceRef field.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"dataSourceRef\": {\n \"description\": \"Specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any local object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the DataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, both fields (DataSource and DataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. There are two important differences between DataSource and DataSourceRef: * While DataSource only allows two specific types of objects, DataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While DataSource ignores disallowed values (dropping them), DataSourceRef preserves all values, and generates an error if a disallowed value is specified. (Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"A label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageClassName\": {\n \"description\": \"Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"VolumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"Driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Optional: Extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker should be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"Commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"Target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetPortal\": {\n \"description\": \"iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Will force the ReadOnly setting in VolumeMounts. Default false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"VolumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"Items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountToken\": {\n \"description\": \"information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Path is the path relative to the mount point of the file to project the token into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group to map volume access to Default is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User to map volume access to Defaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"Volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"The host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"The name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sslEnabled\": {\n \"description\": \"Flag to enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"The ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"The name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"The name of a volume already created in the ScaleIO system that is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeName\": {\n \"description\": \"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"Storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"Path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"strategy\",\n \"template\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Extended Daemon Set\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Extended Daemon Set", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSetReplicaSet.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSetReplicaSet.json new file mode 100644 index 00000000000..9c56c8b9f9e --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonSetReplicaSet.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ExtendedDaemonSetReplicaSet", + "schema": "{\n \"description\": \"ExtendedDaemonSetReplicaSet is the Schema for the extendeddaemonsetreplicasets API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ExtendedDaemonSetReplicaSetSpec defines the desired state of ExtendedDaemonSetReplicaSet\",\n \"properties\": {\n \"selector\": {\n \"description\": \"A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"description\": \"An object that describes the pod that will be created. The ExtendedDaemonSetReplicaSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified).\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations\",\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.\",\n \"type\": \"string\"\n },\n \"creationTimestamp\": {\n \"description\": \"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"deletionGracePeriodSeconds\": {\n \"description\": \"Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"deletionTimestamp\": {\n \"description\": \"DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"type\": \"string\"\n },\n \"finalizers\": {\n \"description\": \"Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"generateName\": {\n \"description\": \"GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\",\n \"type\": \"string\"\n },\n \"generation\": {\n \"description\": \"A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels\",\n \"type\": \"object\"\n },\n \"managedFields\": {\n \"description\": \"ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \\\"ci-cd\\\". The set of fields is always in the version that the workflow used when modifying the object.\",\n \"items\": {\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \\\"default\\\" namespace, but \\\"default\\\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces\",\n \"type\": \"string\"\n },\n \"ownerReferences\": {\n \"description\": \"List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.\",\n \"items\": {\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resourceVersion\": {\n \"description\": \"An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"selfLink\": {\n \"description\": \"SelfLink is a URL representing this object. Populated by the system. Read-only.\\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces. This field is beta-level and is only honored when PodAffinityNamespaceSelector feature is enabled.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"description\": \"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"description\": \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is beta-level and available on clusters that haven't disabled the EphemeralContainers feature gate.\",\n \"items\": {\n \"description\": \"An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation. \\n To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted. \\n This is a beta feature available on clusters that haven't disabled the EphemeralContainers feature gate.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Lifecycle is not allowed for ephemeral containers.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"Ports are not allowed for ephemeral containers.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"description\": \"If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. \\n The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.\",\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set. \\n If the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions \\n If the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup This is an alpha field and requires the IdentifyPodOS feature\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature.\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class This is a beta feature as of Kubernetes v1.14.\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \\n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \\n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \\\"Localhost\\\".\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"description\": \"If specified, the fully qualified Pod hostname will be \\\"\\u003chostname\\u003e.\\u003csubdomain\\u003e.\\u003cpod namespace\\u003e.svc.\\u003ccluster domain\\u003e\\\". If not specified, the pod will not have a domainname at all.\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. It's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assignment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumes\": {\n \"description\": \"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"Specify \\\"true\\\" to force and set the ReadOnly property in VolumeMounts to \\\"true\\\". If omitted, the default is \\\"false\\\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"The Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"The URI the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"AzureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"Share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"CephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"Optional: points to a secret object containing parameters used to connect to OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeID\": {\n \"description\": \"volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"ConfigMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csi\": {\n \"description\": \"CSI (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"Specifies a read-only configuration for the volume. Defaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"DownwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"What type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"Ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \\n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \\n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \\n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \\n A pod can use both types of ephemeral volumes and persistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where `\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \\n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \\n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \\n Required, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the AnyVolumeDataSource feature gate is enabled, this field will always have the same contents as the DataSourceRef field.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"dataSourceRef\": {\n \"description\": \"Specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any local object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the DataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, both fields (DataSource and DataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. There are two important differences between DataSource and DataSourceRef: * While DataSource only allows two specific types of objects, DataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While DataSource ignores disallowed values (dropping them), DataSourceRef preserves all values, and generates an error if a disallowed value is specified. (Alpha) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"A label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageClassName\": {\n \"description\": \"Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"VolumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"Driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Optional: Extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker should be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"Commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"Target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetPortal\": {\n \"description\": \"iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Will force the ReadOnly setting in VolumeMounts. Default false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"PortworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"VolumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"Items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountToken\": {\n \"description\": \"information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Path is the path relative to the mount point of the file to project the token into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"Quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"Group to map volume access to Default is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User to map volume access to Defaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"Volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"The host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"The name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sslEnabled\": {\n \"description\": \"Flag to enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"The ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"The name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"The name of a volume already created in the ScaleIO system that is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeName\": {\n \"description\": \"VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"Storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"Path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"templateGeneration\": {\n \"description\": \"A sequence hash representing a specific generation of the template. Populated by the system. It can be set only during the creation.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"template\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Extended Daemon Set Replica Set\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Extended Daemon Set Replica Set", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonsetSetting.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonsetSetting.json new file mode 100644 index 00000000000..d9f7c203864 --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/components/ExtendedDaemonsetSetting.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ExtendedDaemonsetSetting", + "schema": "{\n \"description\": \"ExtendedDaemonsetSetting is the Schema for the extendeddaemonsetsettings API.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ExtendedDaemonsetSettingSpec is the Schema for the extendeddaemonsetsetting API\",\n \"properties\": {\n \"containers\": {\n \"description\": \"Containers contains a list of container spec override.\",\n \"items\": {\n \"description\": \"ExtendedDaemonsetSettingContainerSpec defines the resources override for a container identified by its name\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"ResourceRequirements describes the compute resource requirements.\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\",\n \"resources\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"nodeSelector\": {\n \"description\": \"NodeSelector lists labels that must be present on nodes to trigger the usage of this resource.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"reference\": {\n \"description\": \"Reference contains enough information to let you identify the referred resource.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\\\"\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"nodeSelector\",\n \"reference\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Extended Daemonset Setting\",\n \"type\": \"object\"\n}", + "version": "datadoghq.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Extended Daemonset Setting", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "git://github.com/DataDog/helm-charts/main/crds" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "source_uri": "git://github.com/DataDog/helm-charts/main/crds", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\n\tL670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\n\tc6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\n\tL0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\n\tc18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\n\ts-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\n\tc-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\n\tc6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\n\tc10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\n\tc-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\n\ts11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\n\tc-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\n\tc17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\n\tc11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\n\tc9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\n\tc32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\n\tc-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\n\tc-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\n\tc2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\n\tc2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\n\tc-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\n\tc-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\n\tc19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\n\tc-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\n\tc16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\n\tc-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\n\tc8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\n\tc-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\n\tc-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\n\tc18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\n\tc5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\n\tc5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\n\tC401.49,268.05,386.84,271.12,397.85,260.65\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\n\tc1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\n\tc-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\n\tc12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\n\tc-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\n\tc0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\n\tc-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\n\tc1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\n\tc-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\n\tc19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\n\tc6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\n\tc-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\n\tc1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\n\tc5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\n\tC519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\n\tc6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\n\tc2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\n\tc-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\n\ts12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\n\tc-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\n\tc2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\n\tc5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\n\tc15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\n\tc-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\n\tc4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\n\tc6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\n\tc47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\n\tc-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\n\tc15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\n\tL687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\n\tc-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/model.json b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/model.json new file mode 100644 index 00000000000..d92a2b50171 --- /dev/null +++ b/server/meshmodel/datadog-operator/datadog-3.70.7/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Datadog Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#632CA6", + "secondaryColor": "#00D3A9", + "shape": "rectangle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.55 856.85\" style=\"enable-background:new 0 0 800.55 856.85;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#632CA6;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M670.38,608.27l-71.24-46.99l-59.43,99.27l-69.12-20.21l-60.86,92.89l3.12,29.24l330.9-60.97l-19.22-206.75\u0026#xA;\u0026#x9;L670.38,608.27z M361.79,519.13l53.09-7.3c8.59,3.86,14.57,5.33,24.87,7.95c16.04,4.18,34.61,8.19,62.11-5.67\u0026#xA;\u0026#x9;c6.4-3.17,19.73-15.36,25.12-22.31l217.52-39.46l22.19,268.56l-372.65,67.16L361.79,519.13z M765.85,422.36l-21.47,4.09L703.13,0.27\u0026#xA;\u0026#x9;L0.27,81.77l86.59,702.68l82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26c-24.23-20.13-15.66-54.32-1.37-75.91\u0026#xA;\u0026#x9;c18.91-36.48,116.34-82.84,110.82-141.15c-1.98-21.2-5.35-48.8-25.03-67.71c-0.74,7.85,0.59,15.41,0.59,15.41\u0026#xA;\u0026#x9;s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31c-3.03,8.33-2.63,17.99-2.63,17.99s-6.61-15.62-7.68-28.8\u0026#xA;\u0026#x9;c-3.92,5.9-4.91,17.11-4.91,17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49c21.45,15.03,68.67,11.46,87.07-15.66\u0026#xA;\u0026#x9;c6.11-8.98,10.29-33.5-3.05-81.81c-8.57-30.98-29.79-77.11-38.06-94.61l-0.99,0.71c4.36,14.1,13.35,43.66,16.8,57.99\u0026#xA;\u0026#x9;c10.44,43.47,13.24,58.6,8.34,78.64c-4.17,17.42-14.17,28.82-39.52,41.56c-25.35,12.78-58.99-18.32-61.12-20.04\u0026#xA;\u0026#x9;c-24.63-19.62-43.68-51.63-45.81-67.18c-2.21-17.02,9.81-27.24,15.87-41.16c-8.67,2.48-18.34,6.88-18.34,6.88\u0026#xA;\u0026#x9;s11.54-11.94,25.77-22.27c5.89-3.9,9.35-6.38,15.56-11.54c-8.99-0.15-16.29,0.11-16.29,0.11s14.99-8.1,30.53-14\u0026#xA;\u0026#x9;c-11.37-0.5-22.25-0.08-22.25-0.08s33.45-14.96,59.87-25.94c18.17-7.45,35.92-5.25,45.89,9.17c13.09,18.89,26.84,29.15,55.98,35.51\u0026#xA;\u0026#x9;c17.89-7.93,23.33-12.01,45.81-18.13c19.79-21.76,35.33-24.58,35.33-24.58s-7.71,7.07-9.77,18.18\u0026#xA;\u0026#x9;c11.22-8.84,23.52-16.22,23.52-16.22s-4.76,5.88-9.2,15.22l1.03,1.53c13.09-7.85,28.48-14.04,28.48-14.04s-4.4,5.56-9.56,12.76\u0026#xA;\u0026#x9;c9.87-0.08,29.89,0.42,37.66,1.3c45.87,1.01,55.39-48.99,72.99-55.26c22.04-7.87,31.89-12.63,69.45,24.26\u0026#xA;\u0026#x9;c32.23,31.67,57.41,88.36,44.91,101.06c-10.48,10.54-31.16-4.11-54.08-32.68c-12.11-15.13-21.27-33.01-25.56-55.74\u0026#xA;\u0026#x9;c-3.62-19.18-17.71-30.31-17.71-30.31S520,92.95,520,109.01c0,8.77,1.1,41.56,15.16,59.96c-1.39,2.69-2.04,13.31-3.58,15.34\u0026#xA;\u0026#x9;c-16.36-19.77-51.49-33.92-57.22-38.09c19.39,15.89,63.96,52.39,81.08,87.37c16.19,33.08,6.65,63.4,14.84,71.25\u0026#xA;\u0026#x9;c2.33,2.25,34.82,42.73,41.07,63.07c10.9,35.45,0.65,72.7-13.62,95.81l-39.85,6.21c-5.83-1.62-9.76-2.43-14.99-5.46\u0026#xA;\u0026#x9;c2.88-5.1,8.61-17.82,8.67-20.44l-2.25-3.95c-12.4,17.57-33.18,34.63-50.44,44.43c-22.59,12.8-48.63,10.83-65.58,5.58\u0026#xA;\u0026#x9;c-48.11-14.84-93.6-47.35-104.57-55.89c0,0-0.34,6.82,1.73,8.35c12.13,13.68,39.92,38.43,66.78,55.68l-57.26,6.3l27.07,210.78\u0026#xA;\u0026#x9;c-12,1.72-13.87,2.56-27.01,4.43c-11.58-40.91-33.73-67.62-57.94-83.18c-21.35-13.72-50.8-16.81-78.99-11.23l-1.81,2.1\u0026#xA;\u0026#x9;c19.6-2.04,42.74,0.8,66.51,15.85c23.33,14.75,42.13,52.85,49.05,75.79c8.86,29.32,14.99,60.68-8.86,93.92\u0026#xA;\u0026#x9;c-16.97,23.63-66.51,36.69-106.53,8.44c10.69,17.19,25.14,31.25,44.59,33.9c28.88,3.92,56.29-1.09,75.16-20.46\u0026#xA;\u0026#x9;c16.11-16.56,24.65-51.19,22.4-87.66l25.49-3.7l9.2,65.46l421.98-50.81L765.85,422.36z M509.12,244.59\u0026#xA;\u0026#x9;c-1.18,2.69-3.03,4.45-0.25,13.2l0.17,0.5l0.44,1.13l1.16,2.62c5.01,10.24,10.51,19.9,19.7,24.83c2.38-0.4,4.84-0.67,7.39-0.8\u0026#xA;\u0026#x9;c8.63-0.38,14.08,0.99,17.54,2.85c0.31-1.72,0.38-4.24,0.19-7.95c-0.67-12.97,2.57-35.03-22.36-46.64\u0026#xA;\u0026#x9;c-9.41-4.37-22.61-3.02-27.01,2.43c0.8,0.1,1.52,0.27,2.08,0.46C514.82,239.55,510.31,241.84,509.12,244.59 M578.99,365.61\u0026#xA;\u0026#x9;c-3.27-1.8-18.55-1.09-29.29,0.19c-20.46,2.41-42.55,9.51-47.39,13.29c-8.8,6.8-4.8,18.66,1.7,23.53\u0026#xA;\u0026#x9;c18.23,13.62,34.21,22.75,51.08,20.53c10.36-1.36,19.49-17.76,25.96-32.64C585.48,380.26,585.48,369.2,578.99,365.61 M397.85,260.65\u0026#xA;\u0026#x9;c5.77-5.48-28.74-12.68-55.52,5.58c-19.75,13.47-20.38,42.35-1.47,58.72c1.89,1.62,3.45,2.77,4.91,3.71\u0026#xA;\u0026#x9;c5.52-2.6,11.81-5.23,19.05-7.58c12.23-3.97,22.4-6.02,30.76-7.11c4-4.47,8.65-12.34,7.49-26.59\u0026#xA;\u0026#x9;C401.49,268.05,386.84,271.12,397.85,260.65\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 800.5 907.77\" style=\"enable-background:new 0 0 800.5 907.77;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M303.36,238.61c31.36-21.37,71.76-12.97,65-6.53c-12.89,12.28,4.26,8.65,6.11,31.31\u0026#xA;\u0026#x9;c1.36,16.69-4.09,25.88-8.78,31.11c-9.79,1.28-21.69,3.67-36.02,8.33c-8.48,2.76-15.85,5.82-22.31,8.9\u0026#xA;\u0026#x9;c-1.7-1.11-3.55-2.47-5.74-4.36C279.5,288.19,280.24,254.37,303.36,238.61 M490.68,370.72c5.69-4.41,31.55-12.72,55.49-15.55\u0026#xA;\u0026#x9;c12.57-1.48,30.49-2.34,34.31-0.2c7.59,4.19,7.59,17.16,2.39,29.14c-7.57,17.4-18.27,36.63-30.39,38.21\u0026#xA;\u0026#x9;c-19.77,2.61-38.46-8.09-59.8-24.03C485.06,392.56,480.38,378.68,490.68,370.72 M526.75,201.27c29.19,13.58,25.37,39.42,26.18,54.6\u0026#xA;\u0026#x9;c0.22,4.36,0.15,7.3-0.22,9.32c-4.04-2.19-10.43-3.8-20.56-3.35c-2.96,0.12-5.84,0.47-8.63,0.91c-10.77-5.77-17.21-17.06-23.1-29.06\u0026#xA;\u0026#x9;c-0.54-1.11-0.96-2.1-1.36-3.06c-0.17-0.44-0.35-0.91-0.52-1.31c-0.07-0.22-0.12-0.39-0.2-0.59c-3.23-10.25-1.06-12.3,0.3-15.46\u0026#xA;\u0026#x9;c1.41-3.23,6.68-5.89-1.11-8.58c-0.67-0.25-1.5-0.39-2.44-0.57C500.25,197.72,515.7,196.17,526.75,201.27 M367.62,510.22\u0026#xA;\u0026#x9;c-31.45-20.19-63.99-49.15-78.22-65.18c-2.39-1.8-2-9.79-2-9.79c12.84,9.98,66.11,48.04,122.44,65.42\u0026#xA;\u0026#x9;c19.87,6.14,50.36,8.46,76.81-6.53c20.21-11.46,44.54-31.43,59.06-52.01l2.66,4.61c-0.1,3.06-6.78,17.97-10.18,23.96\u0026#xA;\u0026#x9;c6.14,3.53,10.72,4.49,17.55,6.36l46.64-7.27c16.74-27.04,28.74-70.65,15.95-112.16c-7.3-23.81-45.36-71.22-48.09-73.83\u0026#xA;\u0026#x9;c-9.56-9.19,1.6-44.69-17.35-83.42C532.86,159.41,480.67,116.69,458,98.1c6.68,4.88,47.82,21.47,67,44.62\u0026#xA;\u0026#x9;c1.8-2.39,2.54-14.82,4.19-17.97c-16.47-21.57-17.75-59.95-17.75-70.21c0-18.81-9.56-40.13-9.56-40.13s16.47,13.04,20.73,35.5\u0026#xA;\u0026#x9;c5.03,26.6,15.75,47.55,29.93,65.28c26.84,33.43,51.08,50.58,63.33,38.23C630.53,138.58,601,72.2,563.28,35.15\u0026#xA;\u0026#x9;C519.25-8.09,507.74-2.52,481.91,6.7c-20.61,7.35-31.75,65.87-85.47,64.71c-9.1-1.06-32.54-1.63-44.13-1.53\u0026#xA;\u0026#x9;c6.04-8.43,11.22-14.94,11.22-14.94s-18.02,7.25-33.38,16.44l-1.18-1.77c5.18-10.92,10.75-17.82,10.75-17.82s-14.4,8.65-27.54,19.01\u0026#xA;\u0026#x9;c2.39-13.02,11.44-21.27,11.44-21.27s-18.19,3.28-41.36,28.77c-26.33,7.2-32.66,11.93-53.64,21.22\u0026#xA;\u0026#x9;c-34.12-7.44-50.21-19.45-65.55-41.56c-11.68-16.89-32.47-19.45-53.71-10.72c-30.97,12.8-70.14,30.33-70.14,30.33\u0026#xA;\u0026#x9;s12.77-0.52,26.08,0.05c-18.22,6.9-35.72,16.39-35.72,16.39s8.53-0.3,19.06-0.12c-7.27,6.04-11.29,8.92-18.22,13.51\u0026#xA;\u0026#x9;c-16.66,12.1-30.17,26.08-30.17,26.08s11.31-5.15,21.47-8.04c-7.1,16.27-21.18,28.25-18.59,48.17\u0026#xA;\u0026#x9;c2.49,18.19,24.82,55.66,53.64,78.66c2.49,2,41.86,38.43,71.56,23.47c29.68-14.94,41.39-28.25,46.27-48.66\u0026#xA;\u0026#x9;c5.74-23.44,2.47-41.17-9.79-92.05c-4.04-16.79-14.57-51.37-19.65-67.91l1.13-0.81c9.71,20.49,34.56,74.5,44.57,110.78\u0026#xA;\u0026#x9;c15.63,56.57,10.75,85.27,3.6,95.79c-21.57,31.73-76.84,35.92-101.98,18.34c-3.85,60.91,9.76,87.73,14.37,101.24\u0026#xA;\u0026#x9;c-2.29,15.53,7.77,44.37,7.77,44.37s1.13-13.11,5.74-20.02c1.23,15.41,9,33.72,9,33.72s-0.47-11.31,3.06-21.08\u0026#xA;\u0026#x9;c4.98,8.43,8.63,10.43,13.34,16.76c4.71,16.47,14.15,28.5,14.15,28.5s-1.53-8.83-0.69-18.02c23.05,22.14,27.02,54.45,29.31,79.28\u0026#xA;\u0026#x9;c6.46,68.26-107.63,122.54-129.74,165.24c-16.76,25.29-26.8,65.3,1.58,88.89c68.6,56.97,42.25,72.65,76.59,97.69\u0026#xA;\u0026#x9;c47.11,34.34,106.05,18.96,126.11-8.97c27.93-38.92,20.76-75.63,10.38-109.97c-8.11-26.85-30.15-71.46-57.41-88.72\u0026#xA;\u0026#x9;c-27.86-17.65-54.95-20.95-77.9-18.59l2.12-2.44c33.01-6.56,67.52-2.96,92.49,13.14c28.35,18.22,54.28,49.47,67.84,97.37\u0026#xA;\u0026#x9;c15.38-2.19,17.55-3.18,31.63-5.18l-31.7-246.76L367.62,510.22z M385.94,819.52l-3.65-34.22l71.29-108.74l80.93,23.64l69.59-116.23\u0026#xA;\u0026#x9;L687.52,639l63.38-132.92l22.53,242.07L385.94,819.52z M774.27,456.51l-254.72,46.17c-6.31,8.13-21.91,22.41-29.41,26.13\u0026#xA;\u0026#x9;c-32.17,16.2-53.91,11.51-72.7,6.63c-12.08-3.06-19.08-4.78-29.11-9.29l-62.17,8.53l37.74,314.87l436.35-78.66L774.27,456.51z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e\n" + }, + "model": { + "version": "datadog-3.70.7" + }, + "name": "datadog-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/github/0.2.3/v1.0.0/model.json b/server/meshmodel/github/0.2.3/v1.0.0/model.json index 769567c0f35..bc4831710b6 100644 --- a/server/meshmodel/github/0.2.3/v1.0.0/model.json +++ b/server/meshmodel/github/0.2.3/v1.0.0/model.json @@ -11,7 +11,7 @@ "secondaryColor": "#00D3A9", "shape": "circle", "styleOverrides": "", - "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\" height=\"20\" width=\"20\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3\u0026#x9;c-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1\u0026#x9;c12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8\u0026#x9;c-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6\u0026#x9;c26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6\u0026#x9;c4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5\u0026#x9;C248.3,37.7,196,0,137.1,0L137.1,0z\"\u003e\u003c/path\u003e\u003c/svg\u003e", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 274.1 267.3\" xml:space=\"preserve\" style=\"enable-background:new 0 0 274.1 267.3\" height=\"20\" width=\"20\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M137.1,0C61.4,0,0,61.3,0,136.9C0,196,37.8,248.4,93.8,267c6.8,1.3,9.3-3,9.3-6.6c0-3.3-0.1-11.9-0.2-23.3 c-38.1,8.3-46.1-18.4-46.1-18.4c-6.2-15.8-15.2-20-15.2-20c-12.4-8.5,0.9-8.3,0.9-8.3c13.7,1,21,14.1,21,14.1 c12.2,20.9,32.1,14.9,39.9,11.4c1.2-8.9,4.8-14.9,8.7-18.3c-30.4-3.5-62.4-15.2-62.4-67.7c-0.2-13.6,4.8-26.8,14.1-36.8 c-1.4-3.5-6.1-17.4,1.3-36.3c0,0,11.5-3.7,37.7,14c11.2-3.1,22.7-4.6,34.3-4.6c11.6,0.1,23.1,1.6,34.3,4.6 c26.2-17.7,37.6-14,37.6-14c7.5,18.9,2.8,32.8,1.4,36.3c9.3,10,14.3,23.2,14.1,36.8c0,52.6-32,64.2-62.5,67.6 c4.9,4.2,9.3,12.6,9.3,25.4c0,18.3-0.2,33.1-0.2,37.6c0,3.7,2.5,7.9,9.4,6.6c71.8-24,110.5-101.7,86.5-173.5 C248.3,37.7,196,0,137.1,0L137.1,0z\"\u003e\u003c/path\u003e\u003c/svg\u003e", "svgComplete": "", "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" xmlns:_xmlns=\"xmlns\" _xmlns:svgjs=\"http://svgjs.com/svgjs\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"enable-background:new 0 0 512 512\" width=\"20\" height=\"20\" x=\"0\" y=\"0\" version=\"1.1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-58.796876l-29.601562 97.199219c-111.898438-27-197-127.5-197-247.5 0-140.699219 115.300781-257 256-257s256 116.300781 256 257zm0 0\" data-original=\"#384949\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#fff\" d=\"m512 257c0 120-84.101562 220.5-196 247.5l-30.601562-97.199219h-29.398438v-407.300781c140.699219 0 256 116.300781 256 257zm0 0\" data-original=\"#293939\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m181.277344 430.058594c-6.078125 0-12.011719-.867188-17.828125-2.578125-15.128907-4.46875-27.421875-14.546875-36.546875-29.914063-4.160156-7.015625-8.496094-11.878906-13.605469-15.308594-5.027344-3.382812-9.039063-4.671874-13.273437-4.363281l-2.636719-29.882812c11.117187-.953125 21.753906 2.0625 32.59375 9.316406 8.832031 5.902344 16.257812 14.0625 22.71875 24.914063 5.304687 8.921874 11.410156 14.152343 19.25 16.46875 8.804687 2.589843 17.941406 1.507812 29.632812-3.472657l11.808594 27.566407c-11.296875 4.835937-21.929687 7.253906-32.113281 7.253906zm0 0\" data-original=\"#ececf1\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5s-39.800781-2.699219-59-7.5v-98.402344c0-26.699218 10.101562-34.199218 17.898438-45.597656-66.898438-9.902344-93.296876-45.300781-103.800782-73.199219-14.097656-37.203125-6.597656-83.402343 18.003906-112.800781.597657-.601562 1.5-2.101562 1.199219-3-11.402343-34.199219 2.398438-62.699219 3-65.699219 12.898438 3.898438 15-3.902343 56.699219 21.597657l7.199219 4.203124c3 1.796876 2.101562.597657 5.101562.597657 17.398438-4.800781 35.699219-7.5 53.699219-7.5 18.300781 0 36.300781 2.699219 54.597656 7.5l2.101563.300781s.597656 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.195313-25.800781.300781 3 14.101562 31.796875 2.703125 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#ececf1\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" fill=\"#000\" d=\"m400.902344 287.300781c-10.503906 27.898438-36.902344 63.300781-103.800782 73.199219 8.699219 12.898438 19.199219 19.800781 18.898438 46.800781v97.199219c-19.199219 4.800781-39.300781 7.5-60 7.5v-387.300781c18.300781 0 36.300781 2.699219 54.601562 7.5l2.097657.300781s.601562 0 2.101562-.898438c51.898438-31.503906 50.097657-21.300781 64.199219-25.800781.300781 3 14.101562 31.796875 2.699219 65.699219-1.5 4.5 45 47.097656 19.203125 115.800781zm0 0\" data-original=\"#e2e2e7\"\u003e\u003c/path\u003e\u003c/g\u003e\u003c/svg\u003e" }, diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/AuthConfig.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/AuthConfig.json new file mode 100644 index 00000000000..7cefe126ac6 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/AuthConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AuthConfig", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"booleanExpr\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"configs\": {\n \"items\": {\n \"properties\": {\n \"apiKeyAuth\": {\n \"properties\": {\n \"aerospikeApikeyStorage\": {\n \"properties\": {\n \"allowInsecure\": {\n \"type\": \"boolean\"\n },\n \"batchSize\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"certPath\": {\n \"type\": \"string\"\n },\n \"commitAll\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"commitMaster\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"hostname\": {\n \"type\": \"string\"\n },\n \"keyPath\": {\n \"type\": \"string\"\n },\n \"labelSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"nodeTlsName\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readModeAp\": {\n \"properties\": {\n \"readModeApAll\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"readModeApOne\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"readModeSc\": {\n \"properties\": {\n \"readModeScAllowUnavailable\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"readModeScLinearize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"readModeScReplica\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"readModeScSession\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rootCaPath\": {\n \"type\": \"string\"\n },\n \"set\": {\n \"type\": \"string\"\n },\n \"tlsCurveGroups\": {\n \"items\": {\n \"properties\": {\n \"curveP256\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"curveP384\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"curveP521\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"x25519\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tlsVersion\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"apiKeySecretRefs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headerName\": {\n \"type\": \"string\"\n },\n \"headersFromMetadata\": {\n \"additionalProperties\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"required\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersFromMetadataEntry\": {\n \"additionalProperties\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"required\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"k8sSecretApikeyStorage\": {\n \"properties\": {\n \"apiKeySecretRefs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labelSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"labelSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"apr\": {\n \"properties\": {\n \"users\": {\n \"additionalProperties\": {\n \"properties\": {\n \"hashedPassword\": {\n \"type\": \"string\"\n },\n \"salt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"encryption\": {\n \"properties\": {\n \"apr\": {\n \"type\": \"object\"\n },\n \"sha1\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"realm\": {\n \"type\": \"string\"\n },\n \"userList\": {\n \"properties\": {\n \"users\": {\n \"additionalProperties\": {\n \"properties\": {\n \"hashedPassword\": {\n \"type\": \"string\"\n },\n \"salt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"hmacAuth\": {\n \"properties\": {\n \"parametersInHeaders\": {\n \"type\": \"object\"\n },\n \"secretRefs\": {\n \"properties\": {\n \"secretRefs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"secretRefs\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"secretRefs\"\n ],\n \"type\": \"object\"\n },\n \"jwt\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"ldap\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"allowedGroups\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableGroupChecking\": {\n \"type\": \"boolean\"\n },\n \"groupLookupSettings\": {\n \"properties\": {\n \"checkGroupsWithServiceAccount\": {\n \"type\": \"boolean\"\n },\n \"credentialsSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"membershipAttributeName\": {\n \"type\": \"string\"\n },\n \"pool\": {\n \"properties\": {\n \"initialSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"searchFilter\": {\n \"type\": \"string\"\n },\n \"userDnTemplate\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"oauth\": {\n \"properties\": {\n \"appUrl\": {\n \"type\": \"string\"\n },\n \"authEndpointQueryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"callbackPath\": {\n \"type\": \"string\"\n },\n \"clientId\": {\n \"type\": \"string\"\n },\n \"clientSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"issuerUrl\": {\n \"type\": \"string\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"appUrl\"\n ],\n \"type\": \"object\"\n },\n \"oauth2\": {\n \"properties\": {\n \"accessTokenValidation\": {\n \"properties\": {\n \"cacheTimeout\": {\n \"type\": \"string\"\n },\n \"dynamicMetadataFromClaims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"introspection\": {\n \"properties\": {\n \"clientId\": {\n \"type\": \"string\"\n },\n \"clientSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disableClientSecret\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"introspectionUrl\": {\n \"type\": \"string\"\n },\n \"userIdAttributeName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"introspectionUrl\"\n ],\n \"type\": \"object\"\n },\n \"introspectionUrl\": {\n \"type\": \"string\"\n },\n \"jwt\": {\n \"properties\": {\n \"issuer\": {\n \"type\": \"string\"\n },\n \"localJwks\": {\n \"properties\": {\n \"inlineString\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inlineString\"\n ],\n \"type\": \"object\"\n },\n \"remoteJwks\": {\n \"properties\": {\n \"refreshInterval\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requiredScopes\": {\n \"properties\": {\n \"scope\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"userinfoUrl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"oauth2\": {\n \"properties\": {\n \"afterLogoutUrl\": {\n \"type\": \"string\"\n },\n \"appUrl\": {\n \"type\": \"string\"\n },\n \"authEndpoint\": {\n \"type\": \"string\"\n },\n \"authEndpointQueryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"callbackPath\": {\n \"type\": \"string\"\n },\n \"clientId\": {\n \"type\": \"string\"\n },\n \"clientSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disableClientSecret\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"logoutPath\": {\n \"type\": \"string\"\n },\n \"revocationEndpoint\": {\n \"type\": \"string\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"session\": {\n \"properties\": {\n \"cipherConfig\": {\n \"properties\": {\n \"keyRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"allowRefreshing\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"keyPrefix\": {\n \"type\": \"string\"\n },\n \"targetDomain\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cookieOptions\": {\n \"properties\": {\n \"domain\": {\n \"type\": \"string\"\n },\n \"httpOnly\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"maxAge\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"notSecure\": {\n \"type\": \"boolean\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"sameSite\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"failOnFetchFailure\": {\n \"type\": \"boolean\"\n },\n \"redis\": {\n \"properties\": {\n \"allowRefreshing\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"cookieName\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n },\n \"keyPrefix\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"properties\": {\n \"db\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"poolSize\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"socketType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsCertMountPath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"preExpiryBuffer\": {\n \"type\": \"string\"\n },\n \"targetDomain\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tokenEndpoint\": {\n \"type\": \"string\"\n },\n \"tokenEndpointQueryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"clientId\",\n \"appUrl\",\n \"callbackPath\",\n \"authEndpoint\",\n \"tokenEndpoint\"\n ],\n \"type\": \"object\"\n },\n \"oidcAuthorizationCode\": {\n \"properties\": {\n \"accessToken\": {\n \"properties\": {\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"afterLogoutUrl\": {\n \"type\": \"string\"\n },\n \"appUrl\": {\n \"type\": \"string\"\n },\n \"authEndpointQueryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"autoMapFromMetadata\": {\n \"properties\": {\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"claimsCachingOptions\": {\n \"properties\": {\n \"db\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"poolSize\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"socketType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsCertMountPath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"clientId\": {\n \"type\": \"string\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"callbackPath\": {\n \"type\": \"string\"\n },\n \"clientAuthentication\": {\n \"properties\": {\n \"clientSecret\": {\n \"properties\": {\n \"clientSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disableClientSecret\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"privateKeyJwt\": {\n \"properties\": {\n \"signingKeyRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"validFor\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"signingKeyRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"clientId\": {\n \"type\": \"string\"\n },\n \"clientSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"default\": {\n \"type\": \"object\"\n },\n \"disableClientSecret\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"discoveryOverride\": {\n \"properties\": {\n \"authEndpoint\": {\n \"type\": \"string\"\n },\n \"authMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claims\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"endSessionEndpoint\": {\n \"type\": \"string\"\n },\n \"idTokenAlgs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"jwksUri\": {\n \"type\": \"string\"\n },\n \"responseTypes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"revocationEndpoint\": {\n \"type\": \"string\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subjects\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenEndpoint\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"discoveryPollInterval\": {\n \"type\": \"string\"\n },\n \"dynamicMetadataFromClaims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"endSessionProperties\": {\n \"properties\": {\n \"methodType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"properties\": {\n \"accessTokenHeader\": {\n \"type\": \"string\"\n },\n \"idTokenHeader\": {\n \"type\": \"string\"\n },\n \"useBearerSchemaForAuthorization\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"identityToken\": {\n \"properties\": {\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"issuerUrl\": {\n \"type\": \"string\"\n },\n \"jwksCacheRefreshPolicy\": {\n \"properties\": {\n \"always\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"maxIdpReqPerPollingInterval\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"never\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"logoutPath\": {\n \"type\": \"string\"\n },\n \"parseCallbackPathAsRegex\": {\n \"type\": \"boolean\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"session\": {\n \"properties\": {\n \"cipherConfig\": {\n \"properties\": {\n \"keyRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"allowRefreshing\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"keyPrefix\": {\n \"type\": \"string\"\n },\n \"targetDomain\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cookieOptions\": {\n \"properties\": {\n \"domain\": {\n \"type\": \"string\"\n },\n \"httpOnly\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"maxAge\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"notSecure\": {\n \"type\": \"boolean\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"sameSite\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"failOnFetchFailure\": {\n \"type\": \"boolean\"\n },\n \"redis\": {\n \"properties\": {\n \"allowRefreshing\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"cookieName\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n },\n \"keyPrefix\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"properties\": {\n \"db\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"poolSize\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"socketType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsCertMountPath\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"preExpiryBuffer\": {\n \"type\": \"string\"\n },\n \"targetDomain\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"sessionIdHeaderName\": {\n \"type\": \"string\"\n },\n \"tokenEndpointQueryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"clientId\",\n \"issuerUrl\",\n \"appUrl\",\n \"callbackPath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"opaAuth\": {\n \"properties\": {\n \"modules\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"properties\": {\n \"fastInputConversion\": {\n \"type\": \"boolean\"\n },\n \"returnDecisionReason\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"query\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"query\"\n ],\n \"type\": \"object\"\n },\n \"opaServerAuth\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"fastInputConversion\": {\n \"type\": \"boolean\"\n },\n \"returnDecisionReason\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"ruleName\": {\n \"type\": \"string\"\n },\n \"serverAddr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"package\"\n ],\n \"type\": \"object\"\n },\n \"passThroughAuth\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpc\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"connectionTimeout\": {\n \"type\": \"string\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"http\": {\n \"properties\": {\n \"connectionTimeout\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"passThroughBody\": {\n \"type\": \"boolean\"\n },\n \"passThroughFilterMetadata\": {\n \"type\": \"boolean\"\n },\n \"passThroughState\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeadersOnDenied\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToOverwrite\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readStateFromResponse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"pluginAuth\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"exportedSymbolName\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pluginFileName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"config\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"failOnRedirect\": {\n \"type\": \"boolean\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"configs\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Auth Config\",\n \"type\": \"object\"\n}", + "version": "enterprise.gloo.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Auth Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Gateway.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Gateway.json new file mode 100644 index 00000000000..5c17a98261d --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Gateway.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Gateway", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"bindAddress\": {\n \"type\": \"string\"\n },\n \"bindPort\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"httpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"caching\": {\n \"properties\": {\n \"allowedVaryHeaders\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cachingServiceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxPayloadSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disableExtProc\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dlp\": {\n \"properties\": {\n \"dlpRules\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"dnsCacheConfig\": {\n \"properties\": {\n \"appleDns\": {\n \"type\": \"object\"\n },\n \"caresDns\": {\n \"properties\": {\n \"dnsResolverOptions\": {\n \"properties\": {\n \"noDefaultSearchDomain\": {\n \"type\": \"boolean\"\n },\n \"useTcpForDnsLookups\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"resolvers\": {\n \"items\": {\n \"properties\": {\n \"pipe\": {\n \"properties\": {\n \"mode\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"socketAddress\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsCacheCircuitBreaker\": {\n \"properties\": {\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsFailureRefreshRate\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsLookupFamily\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"dnsQueryTimeout\": {\n \"type\": \"string\"\n },\n \"dnsRefreshRate\": {\n \"type\": \"string\"\n },\n \"hostTtl\": {\n \"type\": \"string\"\n },\n \"maxHosts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"preresolveHostnames\": {\n \"items\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"saveUpstreamAddress\": {\n \"type\": \"boolean\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"allowModeOverride\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableClearRouteCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"failureModeAllow\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"filterMetadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"forwardRules\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxMessageTimeout\": {\n \"type\": \"string\"\n },\n \"messageTimeout\": {\n \"type\": \"string\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mutationRules\": {\n \"properties\": {\n \"allowAllRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowEnvoy\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowAll\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowIsError\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowSystem\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcWeb\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"gzip\": {\n \"properties\": {\n \"compressionLevel\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"compressionStrategy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"contentLength\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"contentType\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableOnEtagHeader\": {\n \"type\": \"boolean\"\n },\n \"memoryLevel\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"removeAcceptEncodingHeader\": {\n \"type\": \"boolean\"\n },\n \"windowBits\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValidationSettings\": {\n \"properties\": {\n \"disableHttp1MethodValidation\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheck\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpConnectionManagerSettings\": {\n \"properties\": {\n \"acceptHttp10\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowChunkedLength\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"appendXForwardedPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"codecType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"defaultHostForHttp10\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"delayedCloseTimeout\": {\n \"type\": \"string\"\n },\n \"drainTimeout\": {\n \"type\": \"string\"\n },\n \"enableTrailers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"forwardClientCertDetails\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"generateRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"http2ProtocolOptions\": {\n \"properties\": {\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"internalAddressConfig\": {\n \"properties\": {\n \"cidrRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"unixSockets\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConnectionDuration\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestHeadersKb\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n },\n \"mergeSlashes\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"normalizePath\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathWithEscapedSlashesAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveExternalRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxy100Continue\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"requestHeadersTimeout\": {\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"serverHeaderTransformation\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"serverName\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"setCurrentClientCertDetails\": {\n \"properties\": {\n \"cert\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chain\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"subject\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uri\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"skipXffAppend\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"streamIdleTimeout\": {\n \"type\": \"string\"\n },\n \"stripAnyHostPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tracing\": {\n \"properties\": {\n \"datadogConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"environmentVariablesForTags\": {\n \"items\": {\n \"properties\": {\n \"defaultValue\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"literalsForTags\": {\n \"items\": {\n \"properties\": {\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"value\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"openCensusConfig\": {\n \"properties\": {\n \"grpcAddress\": {\n \"properties\": {\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"incomingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"ocagentExporterEnabled\": {\n \"type\": \"boolean\"\n },\n \"outgoingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"traceConfig\": {\n \"properties\": {\n \"constantSampler\": {\n \"properties\": {\n \"decision\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"maxNumberOfAnnotations\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfAttributes\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfLinks\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfMessageEvents\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"probabilitySampler\": {\n \"properties\": {\n \"samplingProbability\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitingSampler\": {\n \"properties\": {\n \"qps\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openTelemetryConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeadersForTags\": {\n \"items\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"verbose\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"zipkinConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorEndpoint\": {\n \"type\": \"string\"\n },\n \"collectorEndpointVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sharedSpanContext\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useRemoteAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uuidRequestIdConfig\": {\n \"properties\": {\n \"packTraceReason\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"useRequestIdForTraceSampling\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"via\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"xffNumTrustedHops\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"httpLocalRatelimit\": {\n \"properties\": {\n \"defaultLimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"enableXRatelimitHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"localRateLimitPerDownstreamConnection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"leftmostXffAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"networkLocalRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyLatency\": {\n \"properties\": {\n \"chargeClusterStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chargeListenerStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"emitDynamicMetadata\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"measureRequestInternally\": {\n \"type\": \"boolean\"\n },\n \"request\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"response\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitServer\": {\n \"properties\": {\n \"denyOnFail\": {\n \"type\": \"boolean\"\n },\n \"enableXRatelimitHeaders\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitBeforeAuth\": {\n \"type\": \"boolean\"\n },\n \"ratelimitServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"router\": {\n \"properties\": {\n \"dynamicStats\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"suppressEnvoyHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sanitizeClusterHeader\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"statefulSession\": {\n \"properties\": {\n \"cookieBased\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerBased\": {\n \"properties\": {\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"strict\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tap\": {\n \"properties\": {\n \"sinks\": {\n \"items\": {\n \"properties\": {\n \"grpcService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"wasm\": {\n \"properties\": {\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"failOpen\": {\n \"type\": \"boolean\"\n },\n \"filePath\": {\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"rootId\": {\n \"type\": \"string\"\n },\n \"vmType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceExpressions\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"virtualServiceSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"virtualServices\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"hybridGateway\": {\n \"properties\": {\n \"delegatedHttpGateways\": {\n \"properties\": {\n \"httpConnectionManagerSettings\": {\n \"properties\": {\n \"acceptHttp10\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowChunkedLength\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"appendXForwardedPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"codecType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"defaultHostForHttp10\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"delayedCloseTimeout\": {\n \"type\": \"string\"\n },\n \"drainTimeout\": {\n \"type\": \"string\"\n },\n \"enableTrailers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"forwardClientCertDetails\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"generateRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"http2ProtocolOptions\": {\n \"properties\": {\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"internalAddressConfig\": {\n \"properties\": {\n \"cidrRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"unixSockets\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConnectionDuration\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestHeadersKb\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n },\n \"mergeSlashes\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"normalizePath\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathWithEscapedSlashesAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveExternalRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxy100Continue\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"requestHeadersTimeout\": {\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"serverHeaderTransformation\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"serverName\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"setCurrentClientCertDetails\": {\n \"properties\": {\n \"cert\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chain\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"subject\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uri\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"skipXffAppend\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"streamIdleTimeout\": {\n \"type\": \"string\"\n },\n \"stripAnyHostPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tracing\": {\n \"properties\": {\n \"datadogConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"environmentVariablesForTags\": {\n \"items\": {\n \"properties\": {\n \"defaultValue\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"literalsForTags\": {\n \"items\": {\n \"properties\": {\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"value\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"openCensusConfig\": {\n \"properties\": {\n \"grpcAddress\": {\n \"properties\": {\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"incomingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"ocagentExporterEnabled\": {\n \"type\": \"boolean\"\n },\n \"outgoingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"traceConfig\": {\n \"properties\": {\n \"constantSampler\": {\n \"properties\": {\n \"decision\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"maxNumberOfAnnotations\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfAttributes\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfLinks\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfMessageEvents\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"probabilitySampler\": {\n \"properties\": {\n \"samplingProbability\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitingSampler\": {\n \"properties\": {\n \"qps\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openTelemetryConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeadersForTags\": {\n \"items\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"verbose\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"zipkinConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorEndpoint\": {\n \"type\": \"string\"\n },\n \"collectorEndpointVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sharedSpanContext\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useRemoteAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uuidRequestIdConfig\": {\n \"properties\": {\n \"packTraceReason\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"useRequestIdForTraceSampling\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"via\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"xffNumTrustedHops\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"preventChildOverrides\": {\n \"type\": \"boolean\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"delegatedTcpGateways\": {\n \"properties\": {\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"matchedGateways\": {\n \"items\": {\n \"properties\": {\n \"httpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"caching\": {\n \"properties\": {\n \"allowedVaryHeaders\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cachingServiceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxPayloadSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disableExtProc\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dlp\": {\n \"properties\": {\n \"dlpRules\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"dnsCacheConfig\": {\n \"properties\": {\n \"appleDns\": {\n \"type\": \"object\"\n },\n \"caresDns\": {\n \"properties\": {\n \"dnsResolverOptions\": {\n \"properties\": {\n \"noDefaultSearchDomain\": {\n \"type\": \"boolean\"\n },\n \"useTcpForDnsLookups\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"resolvers\": {\n \"items\": {\n \"properties\": {\n \"pipe\": {\n \"properties\": {\n \"mode\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"socketAddress\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsCacheCircuitBreaker\": {\n \"properties\": {\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsFailureRefreshRate\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsLookupFamily\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"dnsQueryTimeout\": {\n \"type\": \"string\"\n },\n \"dnsRefreshRate\": {\n \"type\": \"string\"\n },\n \"hostTtl\": {\n \"type\": \"string\"\n },\n \"maxHosts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"preresolveHostnames\": {\n \"items\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"saveUpstreamAddress\": {\n \"type\": \"boolean\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"allowModeOverride\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableClearRouteCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"failureModeAllow\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"filterMetadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"forwardRules\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxMessageTimeout\": {\n \"type\": \"string\"\n },\n \"messageTimeout\": {\n \"type\": \"string\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mutationRules\": {\n \"properties\": {\n \"allowAllRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowEnvoy\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowAll\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowIsError\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowSystem\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcWeb\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"gzip\": {\n \"properties\": {\n \"compressionLevel\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"compressionStrategy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"contentLength\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"contentType\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableOnEtagHeader\": {\n \"type\": \"boolean\"\n },\n \"memoryLevel\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"removeAcceptEncodingHeader\": {\n \"type\": \"boolean\"\n },\n \"windowBits\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValidationSettings\": {\n \"properties\": {\n \"disableHttp1MethodValidation\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheck\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpConnectionManagerSettings\": {\n \"properties\": {\n \"acceptHttp10\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowChunkedLength\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"appendXForwardedPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"codecType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"defaultHostForHttp10\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"delayedCloseTimeout\": {\n \"type\": \"string\"\n },\n \"drainTimeout\": {\n \"type\": \"string\"\n },\n \"enableTrailers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"forwardClientCertDetails\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"generateRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"http2ProtocolOptions\": {\n \"properties\": {\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"internalAddressConfig\": {\n \"properties\": {\n \"cidrRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"unixSockets\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConnectionDuration\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestHeadersKb\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n },\n \"mergeSlashes\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"normalizePath\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathWithEscapedSlashesAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveExternalRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxy100Continue\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"requestHeadersTimeout\": {\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"serverHeaderTransformation\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"serverName\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"setCurrentClientCertDetails\": {\n \"properties\": {\n \"cert\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chain\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"subject\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uri\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"skipXffAppend\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"streamIdleTimeout\": {\n \"type\": \"string\"\n },\n \"stripAnyHostPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tracing\": {\n \"properties\": {\n \"datadogConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"environmentVariablesForTags\": {\n \"items\": {\n \"properties\": {\n \"defaultValue\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"literalsForTags\": {\n \"items\": {\n \"properties\": {\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"value\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"openCensusConfig\": {\n \"properties\": {\n \"grpcAddress\": {\n \"properties\": {\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"incomingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"ocagentExporterEnabled\": {\n \"type\": \"boolean\"\n },\n \"outgoingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"traceConfig\": {\n \"properties\": {\n \"constantSampler\": {\n \"properties\": {\n \"decision\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"maxNumberOfAnnotations\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfAttributes\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfLinks\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfMessageEvents\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"probabilitySampler\": {\n \"properties\": {\n \"samplingProbability\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitingSampler\": {\n \"properties\": {\n \"qps\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openTelemetryConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeadersForTags\": {\n \"items\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"verbose\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"zipkinConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorEndpoint\": {\n \"type\": \"string\"\n },\n \"collectorEndpointVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sharedSpanContext\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useRemoteAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uuidRequestIdConfig\": {\n \"properties\": {\n \"packTraceReason\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"useRequestIdForTraceSampling\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"via\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"xffNumTrustedHops\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"httpLocalRatelimit\": {\n \"properties\": {\n \"defaultLimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"enableXRatelimitHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"localRateLimitPerDownstreamConnection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"leftmostXffAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"networkLocalRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyLatency\": {\n \"properties\": {\n \"chargeClusterStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chargeListenerStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"emitDynamicMetadata\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"measureRequestInternally\": {\n \"type\": \"boolean\"\n },\n \"request\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"response\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitServer\": {\n \"properties\": {\n \"denyOnFail\": {\n \"type\": \"boolean\"\n },\n \"enableXRatelimitHeaders\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitBeforeAuth\": {\n \"type\": \"boolean\"\n },\n \"ratelimitServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"router\": {\n \"properties\": {\n \"dynamicStats\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"suppressEnvoyHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sanitizeClusterHeader\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"statefulSession\": {\n \"properties\": {\n \"cookieBased\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerBased\": {\n \"properties\": {\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"strict\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tap\": {\n \"properties\": {\n \"sinks\": {\n \"items\": {\n \"properties\": {\n \"grpcService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"wasm\": {\n \"properties\": {\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"failOpen\": {\n \"type\": \"boolean\"\n },\n \"filePath\": {\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"rootId\": {\n \"type\": \"string\"\n },\n \"vmType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceExpressions\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"virtualServiceSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"virtualServices\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"properties\": {\n \"passthroughCipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sourcePrefixRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpProxySettings\": {\n \"properties\": {\n \"accessLogFlushInterval\": {\n \"type\": \"string\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"maxConnectAttempts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tunnelingConfig\": {\n \"properties\": {\n \"headersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostname\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpHosts\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"forwardSniClusterName\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"multi\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"single\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamGroup\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"accessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionBalanceConfig\": {\n \"properties\": {\n \"exactBalance\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"listenerAccessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"perConnectionBufferLimitBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"proxyProtocol\": {\n \"properties\": {\n \"allowRequestsWithoutProxyProtocol\": {\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"items\": {\n \"properties\": {\n \"onTlvPresent\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlvType\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"socketOptions\": {\n \"items\": {\n \"properties\": {\n \"bufValue\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"intValue\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"level\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"name\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"state\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"routeOptions\": {\n \"properties\": {\n \"maxDirectResponseBodySizeBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"mostSpecificHeaderMutationsWins\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"ssl\": {\n \"type\": \"boolean\"\n },\n \"tcpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpProxySettings\": {\n \"properties\": {\n \"accessLogFlushInterval\": {\n \"type\": \"string\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"maxConnectAttempts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tunnelingConfig\": {\n \"properties\": {\n \"headersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostname\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpHosts\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"forwardSniClusterName\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"multi\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"single\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamGroup\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"useProxyProto\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Gateway\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GatewayParameters.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GatewayParameters.json new file mode 100644 index 00000000000..7ac62ecb376 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GatewayParameters.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "GatewayParameters", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"kube\": {\n \"properties\": {\n \"aiExtension\": {\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"properties\": {\n \"digest\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"deployment\": {\n \"properties\": {\n \"replicas\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"envoyContainer\": {\n \"properties\": {\n \"bootstrap\": {\n \"properties\": {\n \"componentLogLevels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"logLevel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"properties\": {\n \"digest\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"istio\": {\n \"properties\": {\n \"customSidecars\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"properties\": {\n \"seconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"istioProxyContainer\": {\n \"properties\": {\n \"image\": {\n \"properties\": {\n \"digest\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"istioDiscoveryAddress\": {\n \"type\": \"string\"\n },\n \"istioMetaClusterId\": {\n \"type\": \"string\"\n },\n \"istioMetaMeshId\": {\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podTemplate\": {\n \"properties\": {\n \"affinity\": {\n \"properties\": {\n \"nodeAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"preference\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"items\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extraAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extraLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"fsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"items\": {\n \"properties\": {\n \"effect\": {\n \"type\": \"string\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"sdsContainer\": {\n \"properties\": {\n \"bootstrap\": {\n \"properties\": {\n \"logLevel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"properties\": {\n \"digest\": {\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"type\": \"string\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"properties\": {\n \"clusterIP\": {\n \"type\": \"string\"\n },\n \"extraAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extraLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"stats\": {\n \"properties\": {\n \"enableStatsRoute\": {\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"type\": \"boolean\"\n },\n \"routePrefixRewrite\": {\n \"type\": \"string\"\n },\n \"statsRoutePrefixRewrite\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selfManaged\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-validations\": [\n {\n \"message\": \"only one of 'kube' or 'selfManaged' may be set\",\n \"rule\": \"(has(self.kube) \\u0026\\u0026 !has(self.selfManaged)) || (!has(self.kube) \\u0026\\u0026 has(self.selfManaged))\"\n }\n ]\n }\n },\n \"title\": \"Gateway Parameters\",\n \"type\": \"object\"\n}", + "version": "gateway.gloo.solo.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Gateway Parameters", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GraphQLApi.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GraphQLApi.json new file mode 100644 index 00000000000..8e830e5a4d3 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/GraphQLApi.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "GraphQLApi", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"allowedQueryHashes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"executableSchema\": {\n \"properties\": {\n \"executor\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"enableIntrospection\": {\n \"type\": \"boolean\"\n },\n \"options\": {\n \"properties\": {\n \"maxDepth\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resolutions\": {\n \"additionalProperties\": {\n \"properties\": {\n \"grpcResolver\": {\n \"properties\": {\n \"requestTransform\": {\n \"properties\": {\n \"methodName\": {\n \"type\": \"string\"\n },\n \"outgoingMessageJson\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"requestMetadata\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spanName\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mockResolver\": {\n \"properties\": {\n \"asyncResponse\": {\n \"properties\": {\n \"delay\": {\n \"type\": \"string\"\n },\n \"response\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"errorResponse\": {\n \"type\": \"string\"\n },\n \"syncResponse\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"restResolver\": {\n \"properties\": {\n \"request\": {\n \"properties\": {\n \"body\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"queryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"resultRoot\": {\n \"type\": \"string\"\n },\n \"setters\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spanName\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"queryParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"spanName\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcDescriptorRegistry\": {\n \"properties\": {\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoRefsList\": {\n \"properties\": {\n \"configMapRefs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"schemaDefinition\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"logSensitiveInfo\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"persistedQueryCacheConfig\": {\n \"properties\": {\n \"cacheSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"stitchedSchema\": {\n \"properties\": {\n \"subschemas\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"typeMerge\": {\n \"additionalProperties\": {\n \"properties\": {\n \"args\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"queryName\": {\n \"type\": \"string\"\n },\n \"selectionSet\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Graph QL Api\",\n \"type\": \"object\"\n}", + "version": "graphql.gloo.solo.io/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "Graph QL Api", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/HttpListenerOption.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/HttpListenerOption.json new file mode 100644 index 00000000000..890523fb854 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/HttpListenerOption.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HttpListenerOption", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"caching\": {\n \"properties\": {\n \"allowedVaryHeaders\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cachingServiceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxPayloadSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disableExtProc\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dlp\": {\n \"properties\": {\n \"dlpRules\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"dnsCacheConfig\": {\n \"properties\": {\n \"appleDns\": {\n \"type\": \"object\"\n },\n \"caresDns\": {\n \"properties\": {\n \"dnsResolverOptions\": {\n \"properties\": {\n \"noDefaultSearchDomain\": {\n \"type\": \"boolean\"\n },\n \"useTcpForDnsLookups\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"resolvers\": {\n \"items\": {\n \"properties\": {\n \"pipe\": {\n \"properties\": {\n \"mode\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"socketAddress\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsCacheCircuitBreaker\": {\n \"properties\": {\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsFailureRefreshRate\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsLookupFamily\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"dnsQueryTimeout\": {\n \"type\": \"string\"\n },\n \"dnsRefreshRate\": {\n \"type\": \"string\"\n },\n \"hostTtl\": {\n \"type\": \"string\"\n },\n \"maxHosts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"preresolveHostnames\": {\n \"items\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"saveUpstreamAddress\": {\n \"type\": \"boolean\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"allowModeOverride\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableClearRouteCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"failureModeAllow\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"filterMetadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"forwardRules\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxMessageTimeout\": {\n \"type\": \"string\"\n },\n \"messageTimeout\": {\n \"type\": \"string\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mutationRules\": {\n \"properties\": {\n \"allowAllRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowEnvoy\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowAll\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowIsError\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowSystem\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcWeb\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"gzip\": {\n \"properties\": {\n \"compressionLevel\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"compressionStrategy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"contentLength\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"contentType\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableOnEtagHeader\": {\n \"type\": \"boolean\"\n },\n \"memoryLevel\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"removeAcceptEncodingHeader\": {\n \"type\": \"boolean\"\n },\n \"windowBits\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValidationSettings\": {\n \"properties\": {\n \"disableHttp1MethodValidation\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheck\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpConnectionManagerSettings\": {\n \"properties\": {\n \"acceptHttp10\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowChunkedLength\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"appendXForwardedPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"codecType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"defaultHostForHttp10\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"delayedCloseTimeout\": {\n \"type\": \"string\"\n },\n \"drainTimeout\": {\n \"type\": \"string\"\n },\n \"enableTrailers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"forwardClientCertDetails\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"generateRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"http2ProtocolOptions\": {\n \"properties\": {\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"internalAddressConfig\": {\n \"properties\": {\n \"cidrRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"unixSockets\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConnectionDuration\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestHeadersKb\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n },\n \"mergeSlashes\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"normalizePath\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathWithEscapedSlashesAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveExternalRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxy100Continue\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"requestHeadersTimeout\": {\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"serverHeaderTransformation\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"serverName\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"setCurrentClientCertDetails\": {\n \"properties\": {\n \"cert\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chain\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"subject\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uri\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"skipXffAppend\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"streamIdleTimeout\": {\n \"type\": \"string\"\n },\n \"stripAnyHostPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tracing\": {\n \"properties\": {\n \"datadogConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"environmentVariablesForTags\": {\n \"items\": {\n \"properties\": {\n \"defaultValue\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"literalsForTags\": {\n \"items\": {\n \"properties\": {\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"value\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"openCensusConfig\": {\n \"properties\": {\n \"grpcAddress\": {\n \"properties\": {\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"incomingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"ocagentExporterEnabled\": {\n \"type\": \"boolean\"\n },\n \"outgoingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"traceConfig\": {\n \"properties\": {\n \"constantSampler\": {\n \"properties\": {\n \"decision\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"maxNumberOfAnnotations\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfAttributes\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfLinks\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfMessageEvents\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"probabilitySampler\": {\n \"properties\": {\n \"samplingProbability\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitingSampler\": {\n \"properties\": {\n \"qps\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openTelemetryConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeadersForTags\": {\n \"items\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"verbose\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"zipkinConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorEndpoint\": {\n \"type\": \"string\"\n },\n \"collectorEndpointVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sharedSpanContext\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useRemoteAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uuidRequestIdConfig\": {\n \"properties\": {\n \"packTraceReason\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"useRequestIdForTraceSampling\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"via\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"xffNumTrustedHops\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"httpLocalRatelimit\": {\n \"properties\": {\n \"defaultLimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"enableXRatelimitHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"localRateLimitPerDownstreamConnection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"leftmostXffAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"networkLocalRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyLatency\": {\n \"properties\": {\n \"chargeClusterStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chargeListenerStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"emitDynamicMetadata\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"measureRequestInternally\": {\n \"type\": \"boolean\"\n },\n \"request\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"response\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitServer\": {\n \"properties\": {\n \"denyOnFail\": {\n \"type\": \"boolean\"\n },\n \"enableXRatelimitHeaders\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitBeforeAuth\": {\n \"type\": \"boolean\"\n },\n \"ratelimitServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"router\": {\n \"properties\": {\n \"dynamicStats\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"suppressEnvoyHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sanitizeClusterHeader\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"statefulSession\": {\n \"properties\": {\n \"cookieBased\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerBased\": {\n \"properties\": {\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"strict\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tap\": {\n \"properties\": {\n \"sinks\": {\n \"items\": {\n \"properties\": {\n \"grpcService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"wasm\": {\n \"properties\": {\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"failOpen\": {\n \"type\": \"boolean\"\n },\n \"filePath\": {\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"rootId\": {\n \"type\": \"string\"\n },\n \"vmType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRefs\": {\n \"items\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"sectionName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Http Listener Option\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Http Listener Option", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/ListenerOption.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/ListenerOption.json new file mode 100644 index 00000000000..b6a08b59bac --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/ListenerOption.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ListenerOption", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"accessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionBalanceConfig\": {\n \"properties\": {\n \"exactBalance\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"listenerAccessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"perConnectionBufferLimitBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"proxyProtocol\": {\n \"properties\": {\n \"allowRequestsWithoutProxyProtocol\": {\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"items\": {\n \"properties\": {\n \"onTlvPresent\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlvType\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"socketOptions\": {\n \"items\": {\n \"properties\": {\n \"bufValue\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"intValue\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"level\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"name\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"state\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRefs\": {\n \"items\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"sectionName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Listener Option\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Listener Option", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableHttpGateway.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableHttpGateway.json new file mode 100644 index 00000000000..f5e819ccd70 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableHttpGateway.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MatchableHttpGateway", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"httpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"caching\": {\n \"properties\": {\n \"allowedVaryHeaders\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cachingServiceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxPayloadSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disableExtProc\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dlp\": {\n \"properties\": {\n \"dlpRules\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"dnsCacheConfig\": {\n \"properties\": {\n \"appleDns\": {\n \"type\": \"object\"\n },\n \"caresDns\": {\n \"properties\": {\n \"dnsResolverOptions\": {\n \"properties\": {\n \"noDefaultSearchDomain\": {\n \"type\": \"boolean\"\n },\n \"useTcpForDnsLookups\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"resolvers\": {\n \"items\": {\n \"properties\": {\n \"pipe\": {\n \"properties\": {\n \"mode\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"socketAddress\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsCacheCircuitBreaker\": {\n \"properties\": {\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsFailureRefreshRate\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsLookupFamily\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"dnsQueryTimeout\": {\n \"type\": \"string\"\n },\n \"dnsRefreshRate\": {\n \"type\": \"string\"\n },\n \"hostTtl\": {\n \"type\": \"string\"\n },\n \"maxHosts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"preresolveHostnames\": {\n \"items\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"ipv4Compat\": {\n \"type\": \"boolean\"\n },\n \"namedPort\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resolverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"saveUpstreamAddress\": {\n \"type\": \"boolean\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"allowModeOverride\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableClearRouteCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"failureModeAllow\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"filterMetadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"forwardRules\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxMessageTimeout\": {\n \"type\": \"string\"\n },\n \"messageTimeout\": {\n \"type\": \"string\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mutationRules\": {\n \"properties\": {\n \"allowAllRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowEnvoy\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowAll\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowIsError\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowSystem\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcWeb\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"gzip\": {\n \"properties\": {\n \"compressionLevel\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"compressionStrategy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"contentLength\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"contentType\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableOnEtagHeader\": {\n \"type\": \"boolean\"\n },\n \"memoryLevel\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"removeAcceptEncodingHeader\": {\n \"type\": \"boolean\"\n },\n \"windowBits\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValidationSettings\": {\n \"properties\": {\n \"disableHttp1MethodValidation\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"healthCheck\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpConnectionManagerSettings\": {\n \"properties\": {\n \"acceptHttp10\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowChunkedLength\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"appendXForwardedPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"codecType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"defaultHostForHttp10\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"delayedCloseTimeout\": {\n \"type\": \"string\"\n },\n \"drainTimeout\": {\n \"type\": \"string\"\n },\n \"enableTrailers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"forwardClientCertDetails\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"generateRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"http2ProtocolOptions\": {\n \"properties\": {\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"internalAddressConfig\": {\n \"properties\": {\n \"cidrRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"unixSockets\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConnectionDuration\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestHeadersKb\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n },\n \"mergeSlashes\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"normalizePath\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathWithEscapedSlashesAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveExternalRequestId\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxy100Continue\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"requestHeadersTimeout\": {\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"serverHeaderTransformation\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"serverName\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"setCurrentClientCertDetails\": {\n \"properties\": {\n \"cert\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chain\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"dns\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"subject\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uri\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"skipXffAppend\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"streamIdleTimeout\": {\n \"type\": \"string\"\n },\n \"stripAnyHostPort\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tracing\": {\n \"properties\": {\n \"datadogConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"environmentVariablesForTags\": {\n \"items\": {\n \"properties\": {\n \"defaultValue\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"literalsForTags\": {\n \"items\": {\n \"properties\": {\n \"tag\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"value\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"openCensusConfig\": {\n \"properties\": {\n \"grpcAddress\": {\n \"properties\": {\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"incomingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"ocagentExporterEnabled\": {\n \"type\": \"boolean\"\n },\n \"outgoingTraceContext\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"traceConfig\": {\n \"properties\": {\n \"constantSampler\": {\n \"properties\": {\n \"decision\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"maxNumberOfAnnotations\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfAttributes\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfLinks\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxNumberOfMessageEvents\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"probabilitySampler\": {\n \"properties\": {\n \"samplingProbability\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitingSampler\": {\n \"properties\": {\n \"qps\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openTelemetryConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestHeadersForTags\": {\n \"items\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"verbose\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"zipkinConfig\": {\n \"properties\": {\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"collectorEndpoint\": {\n \"type\": \"string\"\n },\n \"collectorEndpointVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"collectorUpstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sharedSpanContext\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useRemoteAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"uuidRequestIdConfig\": {\n \"properties\": {\n \"packTraceReason\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"useRequestIdForTraceSampling\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"via\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"xffNumTrustedHops\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"httpLocalRatelimit\": {\n \"properties\": {\n \"defaultLimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"enableXRatelimitHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"localRateLimitPerDownstreamConnection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"leftmostXffAddress\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"networkLocalRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyLatency\": {\n \"properties\": {\n \"chargeClusterStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"chargeListenerStat\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"emitDynamicMetadata\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"measureRequestInternally\": {\n \"type\": \"boolean\"\n },\n \"request\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"response\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitServer\": {\n \"properties\": {\n \"denyOnFail\": {\n \"type\": \"boolean\"\n },\n \"enableXRatelimitHeaders\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitBeforeAuth\": {\n \"type\": \"boolean\"\n },\n \"ratelimitServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"router\": {\n \"properties\": {\n \"dynamicStats\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"suppressEnvoyHeaders\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sanitizeClusterHeader\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"statefulSession\": {\n \"properties\": {\n \"cookieBased\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerBased\": {\n \"properties\": {\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"strict\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tap\": {\n \"properties\": {\n \"sinks\": {\n \"items\": {\n \"properties\": {\n \"grpcService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"tapServer\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"wasm\": {\n \"properties\": {\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"failOpen\": {\n \"type\": \"boolean\"\n },\n \"filePath\": {\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"rootId\": {\n \"type\": \"string\"\n },\n \"vmType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceExpressions\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualServiceNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"virtualServiceSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"virtualServices\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"properties\": {\n \"sourcePrefixRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Matchable Http Gateway\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Matchable Http Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableTcpGateway.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableTcpGateway.json new file mode 100644 index 00000000000..5a3efeb8cc8 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/MatchableTcpGateway.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MatchableTcpGateway", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"matcher\": {\n \"properties\": {\n \"passthroughCipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sourcePrefixRanges\": {\n \"items\": {\n \"properties\": {\n \"addressPrefix\": {\n \"type\": \"string\"\n },\n \"prefixLen\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpGateway\": {\n \"properties\": {\n \"options\": {\n \"properties\": {\n \"connectionLimit\": {\n \"properties\": {\n \"delayBeforeClose\": {\n \"type\": \"string\"\n },\n \"maxActiveConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpProxySettings\": {\n \"properties\": {\n \"accessLogFlushInterval\": {\n \"type\": \"string\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"maxConnectAttempts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tunnelingConfig\": {\n \"properties\": {\n \"headersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostname\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcpHosts\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"forwardSniClusterName\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"multi\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"single\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamGroup\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Matchable Tcp Gateway\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Matchable Tcp Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Proxy.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Proxy.json new file mode 100644 index 00000000000..fd740230e75 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Proxy.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Proxy", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"compressedSpec\": {\n \"type\": \"string\"\n },\n \"listeners\": {\n \"items\": {\n \"properties\": {\n \"aggregateListener\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"bindAddress\": {\n \"type\": \"string\"\n },\n \"bindPort\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"httpListener\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"hybridListener\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"metadataStatic\": {\n \"properties\": {\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"observedGeneration\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resourceKind\": {\n \"type\": \"string\"\n },\n \"resourceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"properties\": {\n \"accessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionBalanceConfig\": {\n \"properties\": {\n \"exactBalance\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"listenerAccessLoggingService\": {\n \"properties\": {\n \"accessLog\": {\n \"items\": {\n \"properties\": {\n \"fileSink\": {\n \"properties\": {\n \"jsonFormat\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"stringFormat\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"filter\": {\n \"properties\": {\n \"andFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"durationFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcStatusFilter\": {\n \"properties\": {\n \"exclude\": {\n \"type\": \"boolean\"\n },\n \"statuses\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"headerFilter\": {\n \"properties\": {\n \"header\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"safeRegexMatch\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"notHealthCheckFilter\": {\n \"type\": \"object\"\n },\n \"orFilter\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"responseFlagFilter\": {\n \"properties\": {\n \"flags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeFilter\": {\n \"properties\": {\n \"percentSampled\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n },\n \"useIndependentRandomness\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusCodeFilter\": {\n \"properties\": {\n \"comparison\": {\n \"properties\": {\n \"op\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"properties\": {\n \"defaultValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"traceableFilter\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"additionalRequestHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseHeadersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalResponseTrailersToLog\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"logName\": {\n \"type\": \"string\"\n },\n \"staticClusterName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"perConnectionBufferLimitBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"proxyProtocol\": {\n \"properties\": {\n \"allowRequestsWithoutProxyProtocol\": {\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"items\": {\n \"properties\": {\n \"onTlvPresent\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlvType\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"socketOptions\": {\n \"items\": {\n \"properties\": {\n \"bufValue\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"intValue\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"level\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"name\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"state\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"routeOptions\": {\n \"properties\": {\n \"maxDirectResponseBodySizeBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"mostSpecificHeaderMutationsWins\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"sslConfigurations\": {\n \"items\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tcpListener\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useProxyProto\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Proxy\",\n \"type\": \"object\"\n}", + "version": "gloo.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Proxy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RateLimitConfig.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RateLimitConfig.json new file mode 100644 index 00000000000..8bd59cbbf3d --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RateLimitConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RateLimitConfig", + "schema": "{\n \"title\": \"Rate Limit Config\",\n \"type\": \"object\",\n \"x-kubernetes-preserve-unknown-fields\": true\n}", + "version": "ratelimit.solo.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Rate Limit Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteOption.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteOption.json new file mode 100644 index 00000000000..f10aaae2cd0 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteOption.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RouteOption", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"ai\": {\n \"properties\": {\n \"backupModels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"defaults\": {\n \"items\": {\n \"properties\": {\n \"field\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"promptEnrichment\": {\n \"properties\": {\n \"append\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"prepend\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"promptGuard\": {\n \"properties\": {\n \"request\": {\n \"properties\": {\n \"customResponseMessage\": {\n \"type\": \"string\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"builtins\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rag\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"postgres\": {\n \"properties\": {\n \"collectionName\": {\n \"type\": \"string\"\n },\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"promptTemplate\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"semanticCache\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"redis\": {\n \"properties\": {\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ttl\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"appendXForwardedHost\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"autoHostRewrite\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cors\": {\n \"properties\": {\n \"allowCredentials\": {\n \"type\": \"boolean\"\n },\n \"allowHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOrigin\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOriginRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableForRoute\": {\n \"type\": \"boolean\"\n },\n \"exposeHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxAge\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dlp\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"envoyMetadata\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"disabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"overrides\": {\n \"properties\": {\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"faults\": {\n \"properties\": {\n \"abort\": {\n \"properties\": {\n \"httpStatus\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"delay\": {\n \"properties\": {\n \"fixedDelay\": {\n \"type\": \"string\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"hostRewrite\": {\n \"type\": \"string\"\n },\n \"hostRewriteHeader\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"hostRewritePathRegex\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"jwt\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"jwtStaged\": {\n \"properties\": {\n \"afterExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"beforeExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"lbHash\": {\n \"properties\": {\n \"hashPolicies\": {\n \"items\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"sourceIp\": {\n \"type\": \"boolean\"\n },\n \"terminal\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"maxStreamDuration\": {\n \"properties\": {\n \"grpcTimeoutHeaderMax\": {\n \"type\": \"string\"\n },\n \"grpcTimeoutHeaderOffset\": {\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"prefixRewrite\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"rateLimitConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitEarlyConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitRegularConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitBasic\": {\n \"properties\": {\n \"anonymousLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"authorizedLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitEarly\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitRegular\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n },\n \"policies\": {\n \"additionalProperties\": {\n \"properties\": {\n \"nestedClaimDelimiter\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"properties\": {\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"principals\": {\n \"items\": {\n \"properties\": {\n \"jwtPrincipal\": {\n \"properties\": {\n \"claims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"provider\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"regexRewrite\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retries\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"type\": \"string\"\n },\n \"previousPriorities\": {\n \"properties\": {\n \"updateFrequency\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowing\": {\n \"properties\": {\n \"percentage\": {\n \"type\": \"number\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"tracing\": {\n \"properties\": {\n \"propagate\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"routeDescriptor\": {\n \"type\": \"string\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRefs\": {\n \"items\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Route Option\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Route Option", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteTable.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteTable.json new file mode 100644 index 00000000000..82482ebfb42 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/RouteTable.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RouteTable", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"routes\": {\n \"items\": {\n \"properties\": {\n \"delegateAction\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"directResponseAction\": {\n \"properties\": {\n \"body\": {\n \"type\": \"string\"\n },\n \"status\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"graphqlApiRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"inheritableMatchers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritablePathMatchers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"properties\": {\n \"ai\": {\n \"properties\": {\n \"backupModels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"defaults\": {\n \"items\": {\n \"properties\": {\n \"field\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"promptEnrichment\": {\n \"properties\": {\n \"append\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"prepend\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"promptGuard\": {\n \"properties\": {\n \"request\": {\n \"properties\": {\n \"customResponseMessage\": {\n \"type\": \"string\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"builtins\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rag\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"postgres\": {\n \"properties\": {\n \"collectionName\": {\n \"type\": \"string\"\n },\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"promptTemplate\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"semanticCache\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"redis\": {\n \"properties\": {\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ttl\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"appendXForwardedHost\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"autoHostRewrite\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cors\": {\n \"properties\": {\n \"allowCredentials\": {\n \"type\": \"boolean\"\n },\n \"allowHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOrigin\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOriginRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableForRoute\": {\n \"type\": \"boolean\"\n },\n \"exposeHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxAge\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dlp\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"envoyMetadata\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"disabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"overrides\": {\n \"properties\": {\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"faults\": {\n \"properties\": {\n \"abort\": {\n \"properties\": {\n \"httpStatus\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"delay\": {\n \"properties\": {\n \"fixedDelay\": {\n \"type\": \"string\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"hostRewrite\": {\n \"type\": \"string\"\n },\n \"hostRewriteHeader\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"hostRewritePathRegex\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"jwt\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"jwtStaged\": {\n \"properties\": {\n \"afterExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"beforeExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"lbHash\": {\n \"properties\": {\n \"hashPolicies\": {\n \"items\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"sourceIp\": {\n \"type\": \"boolean\"\n },\n \"terminal\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"maxStreamDuration\": {\n \"properties\": {\n \"grpcTimeoutHeaderMax\": {\n \"type\": \"string\"\n },\n \"grpcTimeoutHeaderOffset\": {\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"prefixRewrite\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"rateLimitConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitEarlyConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitRegularConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitBasic\": {\n \"properties\": {\n \"anonymousLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"authorizedLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitEarly\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitRegular\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n },\n \"policies\": {\n \"additionalProperties\": {\n \"properties\": {\n \"nestedClaimDelimiter\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"properties\": {\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"principals\": {\n \"items\": {\n \"properties\": {\n \"jwtPrincipal\": {\n \"properties\": {\n \"claims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"provider\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"regexRewrite\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retries\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"type\": \"string\"\n },\n \"previousPriorities\": {\n \"properties\": {\n \"updateFrequency\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowing\": {\n \"properties\": {\n \"percentage\": {\n \"type\": \"number\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"tracing\": {\n \"properties\": {\n \"propagate\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"routeDescriptor\": {\n \"type\": \"string\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"optionsConfigRefs\": {\n \"properties\": {\n \"delegateOptions\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"redirectAction\": {\n \"properties\": {\n \"hostRedirect\": {\n \"type\": \"string\"\n },\n \"httpsRedirect\": {\n \"type\": \"boolean\"\n },\n \"pathRedirect\": {\n \"type\": \"string\"\n },\n \"portRedirect\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"prefixRewrite\": {\n \"type\": \"string\"\n },\n \"regexRewrite\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseCode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stripQuery\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"routeAction\": {\n \"properties\": {\n \"clusterHeader\": {\n \"type\": \"string\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"autoHostRewriteHeader\": {\n \"type\": \"string\"\n },\n \"hostRewrite\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"multi\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"single\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamGroup\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"weight\": {\n \"maximum\": 2147483647,\n \"minimum\": -2147483648,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Route Table\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Route Table", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Settings.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Settings.json new file mode 100644 index 00000000000..f9dc2e96a73 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Settings.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Settings", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"cachingServer\": {\n \"properties\": {\n \"allowedVaryHeaders\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cachingServiceRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxPayloadSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"consoleOptions\": {\n \"properties\": {\n \"apiExplorerEnabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"readOnly\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"consul\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"caPath\": {\n \"type\": \"string\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"datacenter\": {\n \"type\": \"string\"\n },\n \"dnsAddress\": {\n \"type\": \"string\"\n },\n \"dnsPollingInterval\": {\n \"type\": \"string\"\n },\n \"httpAddress\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"password\": {\n \"type\": \"string\"\n },\n \"serviceDiscovery\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"token\": {\n \"type\": \"string\"\n },\n \"username\": {\n \"type\": \"string\"\n },\n \"waitTime\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"consulDiscovery\": {\n \"properties\": {\n \"consistencyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"edsBlockingQueries\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"queryOptions\": {\n \"properties\": {\n \"useCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"rootCa\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceTagsAllowlist\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"splitTlsServices\": {\n \"type\": \"boolean\"\n },\n \"tlsTagName\": {\n \"type\": \"string\"\n },\n \"useTlsTagging\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"consulKvArtifactSource\": {\n \"properties\": {\n \"rootKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"consulKvSource\": {\n \"properties\": {\n \"rootKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"devMode\": {\n \"type\": \"boolean\"\n },\n \"directoryArtifactSource\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"directoryConfigSource\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"directorySecretSource\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"discovery\": {\n \"properties\": {\n \"fdsMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"fdsOptions\": {\n \"properties\": {\n \"graphqlEnabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"udsOptions\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"watchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"discoveryNamespace\": {\n \"type\": \"string\"\n },\n \"extProc\": {\n \"properties\": {\n \"allowModeOverride\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableClearRouteCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"failureModeAllow\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"filterMetadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"filterStage\": {\n \"properties\": {\n \"predicate\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stage\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"forwardRules\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowedHeaders\": {\n \"properties\": {\n \"patterns\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"maxMessageTimeout\": {\n \"type\": \"string\"\n },\n \"messageTimeout\": {\n \"type\": \"string\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mutationRules\": {\n \"properties\": {\n \"allowAllRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowEnvoy\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"allowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowAll\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowExpression\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disallowIsError\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disallowSystem\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"statPrefix\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"gateway\": {\n \"properties\": {\n \"alwaysSortRouteTableRoutes\": {\n \"type\": \"boolean\"\n },\n \"compressedProxySpec\": {\n \"type\": \"boolean\"\n },\n \"enableGatewayController\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"isolateVirtualHostsBySslConfig\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"persistProxySpec\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"readGatewaysFromAllNamespaces\": {\n \"type\": \"boolean\"\n },\n \"translateEmptyGateways\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"validation\": {\n \"properties\": {\n \"allowWarnings\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alwaysAccept\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableTransformationValidation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ignoreGlooValidationFailure\": {\n \"type\": \"boolean\"\n },\n \"proxyValidationServerAddr\": {\n \"type\": \"string\"\n },\n \"serverEnabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"validationServerGrpcMaxSizeBytes\": {\n \"maximum\": 2147483647,\n \"minimum\": -2147483648,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"validationWebhookTlsCert\": {\n \"type\": \"string\"\n },\n \"validationWebhookTlsKey\": {\n \"type\": \"string\"\n },\n \"warnRouteShortCircuiting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"validationServerAddr\": {\n \"type\": \"string\"\n },\n \"virtualServiceOptions\": {\n \"properties\": {\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"gloo\": {\n \"properties\": {\n \"awsOptions\": {\n \"properties\": {\n \"credentialRefreshDelay\": {\n \"type\": \"string\"\n },\n \"enableCredentialsDiscovey\": {\n \"type\": \"boolean\"\n },\n \"fallbackToFirstFunction\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"propagateOriginalRouting\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"serviceAccountCredentials\": {\n \"properties\": {\n \"cluster\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"uri\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"circuitBreakers\": {\n \"properties\": {\n \"maxConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disableGrpcWeb\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"disableKubernetesDestinations\": {\n \"type\": \"boolean\"\n },\n \"disableProxyGarbageCollection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"enableRestEds\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"endpointsWarmingTimeout\": {\n \"type\": \"string\"\n },\n \"failoverUpstreamDnsPollingInterval\": {\n \"type\": \"string\"\n },\n \"invalidConfigPolicy\": {\n \"properties\": {\n \"invalidRouteResponseBody\": {\n \"type\": \"string\"\n },\n \"invalidRouteResponseCode\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"replaceInvalidRoutes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"istioOptions\": {\n \"properties\": {\n \"appendXForwardedHost\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"enableAutoMtls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"enableIntegration\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logTransformationRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"proxyDebugBindAddr\": {\n \"type\": \"string\"\n },\n \"regexMaxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"removeUnusedFilters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"restXdsBindAddr\": {\n \"type\": \"string\"\n },\n \"transformationEscapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"validationBindAddr\": {\n \"type\": \"string\"\n },\n \"xdsBindAddr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"graphqlOptions\": {\n \"properties\": {\n \"schemaChangeValidationOptions\": {\n \"properties\": {\n \"processingRules\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"rejectBreakingChanges\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"knative\": {\n \"properties\": {\n \"clusterIngressProxyAddress\": {\n \"type\": \"string\"\n },\n \"knativeExternalProxyAddress\": {\n \"type\": \"string\"\n },\n \"knativeInternalProxyAddress\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"properties\": {\n \"rateLimits\": {\n \"properties\": {\n \"QPS\": {\n \"type\": \"number\"\n },\n \"burst\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetesArtifactSource\": {\n \"type\": \"object\"\n },\n \"kubernetesConfigSource\": {\n \"type\": \"object\"\n },\n \"kubernetesSecretSource\": {\n \"type\": \"object\"\n },\n \"linkerd\": {\n \"type\": \"boolean\"\n },\n \"namedExtauth\": {\n \"additionalProperties\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"extauthzServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"failureModeAllow\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"httpService\": {\n \"properties\": {\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"request\": {\n \"properties\": {\n \"allowedHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedHeadersRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headersToAdd\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"allowedClientHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowedUpstreamHeadersToAppend\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"requestBody\": {\n \"properties\": {\n \"allowPartialMessage\": {\n \"type\": \"boolean\"\n },\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"packAsBytes\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n },\n \"statPrefix\": {\n \"type\": \"string\"\n },\n \"statusOnError\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"transportApiVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"userIdHeader\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"observabilityOptions\": {\n \"properties\": {\n \"configStatusMetricLabels\": {\n \"additionalProperties\": {\n \"properties\": {\n \"labelToPath\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"grafanaIntegration\": {\n \"properties\": {\n \"dashboardPrefix\": {\n \"type\": \"string\"\n },\n \"defaultDashboardFolderId\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"extraMetricQueryParameters\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"descriptors\": {\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"setDescriptors\": {\n \"items\": {\n \"properties\": {\n \"alwaysApply\": {\n \"type\": \"boolean\"\n },\n \"rateLimit\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"simpleDescriptors\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitServer\": {\n \"properties\": {\n \"denyOnFail\": {\n \"type\": \"boolean\"\n },\n \"enableXRatelimitHeaders\": {\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitBeforeAuth\": {\n \"type\": \"boolean\"\n },\n \"ratelimitServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTimeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"requireRbac\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"refreshRate\": {\n \"type\": \"string\"\n },\n \"secretOptions\": {\n \"properties\": {\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"kubernetes\": {\n \"type\": \"object\"\n },\n \"vault\": {\n \"properties\": {\n \"accessToken\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"aws\": {\n \"properties\": {\n \"accessKeyId\": {\n \"type\": \"string\"\n },\n \"iamServerIdHeader\": {\n \"type\": \"string\"\n },\n \"leaseIncrement\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"secretAccessKey\": {\n \"type\": \"string\"\n },\n \"sessionToken\": {\n \"type\": \"string\"\n },\n \"vaultRole\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"caCert\": {\n \"type\": \"string\"\n },\n \"caPath\": {\n \"type\": \"string\"\n },\n \"clientCert\": {\n \"type\": \"string\"\n },\n \"clientKey\": {\n \"type\": \"string\"\n },\n \"insecure\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"rootKey\": {\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"caCert\": {\n \"type\": \"string\"\n },\n \"caPath\": {\n \"type\": \"string\"\n },\n \"clientCert\": {\n \"type\": \"string\"\n },\n \"clientKey\": {\n \"type\": \"string\"\n },\n \"insecure\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tlsServerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsServerName\": {\n \"type\": \"string\"\n },\n \"token\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamOptions\": {\n \"properties\": {\n \"globalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"sslParameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"vaultSecretSource\": {\n \"properties\": {\n \"accessToken\": {\n \"type\": \"string\"\n },\n \"address\": {\n \"type\": \"string\"\n },\n \"aws\": {\n \"properties\": {\n \"accessKeyId\": {\n \"type\": \"string\"\n },\n \"iamServerIdHeader\": {\n \"type\": \"string\"\n },\n \"leaseIncrement\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"secretAccessKey\": {\n \"type\": \"string\"\n },\n \"sessionToken\": {\n \"type\": \"string\"\n },\n \"vaultRole\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"caCert\": {\n \"type\": \"string\"\n },\n \"caPath\": {\n \"type\": \"string\"\n },\n \"clientCert\": {\n \"type\": \"string\"\n },\n \"clientKey\": {\n \"type\": \"string\"\n },\n \"insecure\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n },\n \"rootKey\": {\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"caCert\": {\n \"type\": \"string\"\n },\n \"caPath\": {\n \"type\": \"string\"\n },\n \"clientCert\": {\n \"type\": \"string\"\n },\n \"clientKey\": {\n \"type\": \"string\"\n },\n \"insecure\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tlsServerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsServerName\": {\n \"type\": \"string\"\n },\n \"token\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"watchNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Settings\",\n \"type\": \"object\"\n}", + "version": "gloo.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Settings", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Upstream.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Upstream.json new file mode 100644 index 00000000000..685cd2056b8 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/Upstream.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Upstream", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"ai\": {\n \"properties\": {\n \"anthropic\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"customHost\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"mistral\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"customHost\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"customHost\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"aws\": {\n \"properties\": {\n \"awsAccountId\": {\n \"type\": \"string\"\n },\n \"destinationOverrides\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"disableRoleChaining\": {\n \"type\": \"boolean\"\n },\n \"lambdaFunctions\": {\n \"items\": {\n \"properties\": {\n \"lambdaFunctionName\": {\n \"type\": \"string\"\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"qualifier\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"roleArn\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"awsEc2\": {\n \"properties\": {\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"kvPair\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"publicIp\": {\n \"type\": \"boolean\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"roleArn\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionAppName\": {\n \"type\": \"string\"\n },\n \"functions\": {\n \"items\": {\n \"properties\": {\n \"authLevel\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"circuitBreakers\": {\n \"properties\": {\n \"maxConnections\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"connectionConfig\": {\n \"properties\": {\n \"commonHttpProtocolOptions\": {\n \"properties\": {\n \"headersWithUnderscoresAction\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"maxHeadersCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"connectTimeout\": {\n \"type\": \"string\"\n },\n \"http1ProtocolOptions\": {\n \"properties\": {\n \"enableTrailers\": {\n \"type\": \"boolean\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"preserveCaseHeaderKeyFormat\": {\n \"type\": \"boolean\"\n },\n \"properCaseHeaderKeyFormat\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxRequestsPerConnection\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perConnectionBufferLimitBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tcpKeepalive\": {\n \"properties\": {\n \"keepaliveInterval\": {\n \"type\": \"string\"\n },\n \"keepaliveProbes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"keepaliveTime\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"consul\": {\n \"properties\": {\n \"connectEnabled\": {\n \"type\": \"boolean\"\n },\n \"consistencyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"instanceBlacklistTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"instanceTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"queryOptions\": {\n \"properties\": {\n \"useCache\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"properties\": {\n \"graphql\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"descriptors\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"grpcServices\": {\n \"items\": {\n \"properties\": {\n \"functionNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"packageName\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"swaggerInfo\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"additionalProperties\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"subsetTags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"disableIstioAutoMtls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"discoveryMetadata\": {\n \"properties\": {\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsRefreshRate\": {\n \"type\": \"string\"\n },\n \"failover\": {\n \"properties\": {\n \"policy\": {\n \"properties\": {\n \"overprovisioningFactor\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"prioritizedLocalities\": {\n \"items\": {\n \"properties\": {\n \"localityEndpoints\": {\n \"items\": {\n \"properties\": {\n \"lbEndpoints\": {\n \"items\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"healthCheckConfig\": {\n \"properties\": {\n \"hostname\": {\n \"type\": \"string\"\n },\n \"method\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"portValue\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"loadBalancingWeight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"metadata\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"upstreamSslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"loadBalancingWeight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"locality\": {\n \"properties\": {\n \"region\": {\n \"type\": \"string\"\n },\n \"subZone\": {\n \"type\": \"string\"\n },\n \"zone\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"gcp\": {\n \"properties\": {\n \"audience\": {\n \"type\": \"string\"\n },\n \"host\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthChecks\": {\n \"items\": {\n \"properties\": {\n \"alwaysLogHealthCheckFailures\": {\n \"type\": \"boolean\"\n },\n \"customHealthCheck\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"typedConfig\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"eventLogPath\": {\n \"type\": \"string\"\n },\n \"grpcHealthCheck\": {\n \"properties\": {\n \"authority\": {\n \"type\": \"string\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthyEdgeInterval\": {\n \"type\": \"string\"\n },\n \"healthyThreshold\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"httpHealthCheck\": {\n \"properties\": {\n \"expectedStatuses\": {\n \"items\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"method\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAssertions\": {\n \"properties\": {\n \"noMatchHealth\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseMatchers\": {\n \"items\": {\n \"properties\": {\n \"matchHealth\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseMatch\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"jsonKey\": {\n \"properties\": {\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"useHttp2\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"initialJitter\": {\n \"type\": \"string\"\n },\n \"interval\": {\n \"type\": \"string\"\n },\n \"intervalJitter\": {\n \"type\": \"string\"\n },\n \"intervalJitterPercent\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"noTrafficInterval\": {\n \"type\": \"string\"\n },\n \"reuseConnection\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"tcpHealthCheck\": {\n \"properties\": {\n \"receive\": {\n \"items\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"send\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"unhealthyEdgeInterval\": {\n \"type\": \"string\"\n },\n \"unhealthyInterval\": {\n \"type\": \"string\"\n },\n \"unhealthyThreshold\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"httpConnectHeaders\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"httpConnectSslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpProxyHostname\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"ignoreHealthOnHostRemoval\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"initialConnectionWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"initialStreamWindowSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"kube\": {\n \"properties\": {\n \"selector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"serviceNamespace\": {\n \"type\": \"string\"\n },\n \"servicePort\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"serviceSpec\": {\n \"properties\": {\n \"graphql\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"descriptors\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"grpcServices\": {\n \"items\": {\n \"properties\": {\n \"functionNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"packageName\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"swaggerInfo\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"additionalProperties\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subsetSpec\": {\n \"properties\": {\n \"defaultSubset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fallbackPolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectors\": {\n \"items\": {\n \"properties\": {\n \"keys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"singleHostPerSubset\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"loadBalancerConfig\": {\n \"properties\": {\n \"healthyPanicThreshold\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"leastRequest\": {\n \"properties\": {\n \"choiceCount\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"slowStartConfig\": {\n \"properties\": {\n \"aggression\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"minWeightPercent\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"slowStartWindow\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"localityWeightedLbConfig\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"maglev\": {\n \"type\": \"object\"\n },\n \"random\": {\n \"type\": \"object\"\n },\n \"ringHash\": {\n \"properties\": {\n \"ringHashConfig\": {\n \"properties\": {\n \"maximumRingSize\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumRingSize\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"roundRobin\": {\n \"properties\": {\n \"slowStartConfig\": {\n \"properties\": {\n \"aggression\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"minWeightPercent\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"slowStartWindow\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"updateMergeWindow\": {\n \"type\": \"string\"\n },\n \"useHostnameForHashing\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"maxConcurrentStreams\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"outlierDetection\": {\n \"properties\": {\n \"baseEjectionTime\": {\n \"type\": \"string\"\n },\n \"consecutive5xx\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"consecutiveGatewayFailure\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"consecutiveLocalOriginFailure\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"enforcingConsecutive5xx\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"enforcingConsecutiveGatewayFailure\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"enforcingConsecutiveLocalOriginFailure\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"enforcingLocalOriginSuccessRate\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"enforcingSuccessRate\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"interval\": {\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"splitExternalLocalOriginErrors\": {\n \"type\": \"boolean\"\n },\n \"successRateMinimumHosts\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"successRateRequestVolume\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"successRateStdevFactor\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"overrideStreamErrorOnInvalidHttpMessage\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"pipe\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"properties\": {\n \"graphql\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"descriptors\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"grpcServices\": {\n \"items\": {\n \"properties\": {\n \"functionNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"packageName\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"swaggerInfo\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"additionalProperties\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preconnectPolicy\": {\n \"properties\": {\n \"perUpstreamPreconnectRatio\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"predictivePreconnectRatio\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"protocolSelection\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"proxyProtocolVersion\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"respectDnsTtl\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"allowRenegotiation\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sni\": {\n \"type\": \"string\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"static\": {\n \"properties\": {\n \"autoSniRewrite\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"hosts\": {\n \"items\": {\n \"properties\": {\n \"addr\": {\n \"type\": \"string\"\n },\n \"healthCheckConfig\": {\n \"properties\": {\n \"method\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"loadBalancingWeight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"metadata\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"sniAddr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceSpec\": {\n \"properties\": {\n \"graphql\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"descriptors\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"grpcServices\": {\n \"items\": {\n \"properties\": {\n \"functionNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"packageName\": {\n \"type\": \"string\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"grpcJsonTranscoder\": {\n \"properties\": {\n \"autoMapping\": {\n \"type\": \"boolean\"\n },\n \"convertGrpcStatus\": {\n \"type\": \"boolean\"\n },\n \"ignoreUnknownQueryParameters\": {\n \"type\": \"boolean\"\n },\n \"ignoredQueryParameters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"matchIncomingRequestRoute\": {\n \"type\": \"boolean\"\n },\n \"printOptions\": {\n \"properties\": {\n \"addWhitespace\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintEnumsAsInts\": {\n \"type\": \"boolean\"\n },\n \"alwaysPrintPrimitiveFields\": {\n \"type\": \"boolean\"\n },\n \"preserveProtoFieldNames\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"protoDescriptor\": {\n \"type\": \"string\"\n },\n \"protoDescriptorBin\": {\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"protoDescriptorConfigMap\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"swaggerInfo\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"additionalProperties\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"useTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"useHttp2\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Upstream\",\n \"type\": \"object\"\n}", + "version": "gloo.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Upstream", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/UpstreamGroup.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/UpstreamGroup.json new file mode 100644 index 00000000000..d860e20db47 --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/UpstreamGroup.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "UpstreamGroup", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Upstream Group\",\n \"type\": \"object\"\n}", + "version": "gloo.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Upstream Group", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualHostOption.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualHostOption.json new file mode 100644 index 00000000000..fc3d346373c --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualHostOption.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VirtualHostOption", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cors\": {\n \"properties\": {\n \"allowCredentials\": {\n \"type\": \"boolean\"\n },\n \"allowHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOrigin\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOriginRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableForRoute\": {\n \"type\": \"boolean\"\n },\n \"exposeHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxAge\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dlp\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"disabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"overrides\": {\n \"properties\": {\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"includeAttemptCountInResponse\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"includeRequestAttemptCount\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"jwt\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jwtStaged\": {\n \"properties\": {\n \"afterExtAuth\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"beforeExtAuth\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitEarlyConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitRegularConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitBasic\": {\n \"properties\": {\n \"anonymousLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"authorizedLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitEarly\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitRegular\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n },\n \"policies\": {\n \"additionalProperties\": {\n \"properties\": {\n \"nestedClaimDelimiter\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"properties\": {\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"principals\": {\n \"items\": {\n \"properties\": {\n \"jwtPrincipal\": {\n \"properties\": {\n \"claims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"provider\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retries\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"type\": \"string\"\n },\n \"previousPriorities\": {\n \"properties\": {\n \"updateFrequency\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"stats\": {\n \"properties\": {\n \"virtualClusters\": {\n \"items\": {\n \"properties\": {\n \"method\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pattern\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRefs\": {\n \"items\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"sectionName\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Virtual Host Option\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Virtual Host Option", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualService.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualService.json new file mode 100644 index 00000000000..ae9bae4414e --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/components/VirtualService.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VirtualService", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"displayName\": {\n \"type\": \"string\"\n },\n \"namespacedStatuses\": {\n \"properties\": {\n \"statuses\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"sslConfig\": {\n \"properties\": {\n \"alpnProtocols\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableTlsSessionResumption\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"ocspStaplePolicy\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"oneWayTls\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"parameters\": {\n \"properties\": {\n \"cipherSuites\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ecdhCurves\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maximumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minimumProtocolVersion\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"sds\": {\n \"properties\": {\n \"callCredentials\": {\n \"properties\": {\n \"fileCredentialSource\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"tokenFileName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"certificatesSecretName\": {\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"type\": \"string\"\n },\n \"targetUri\": {\n \"type\": \"string\"\n },\n \"validationContextName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sniDomains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sslFiles\": {\n \"properties\": {\n \"ocspStaple\": {\n \"type\": \"string\"\n },\n \"rootCa\": {\n \"type\": \"string\"\n },\n \"tlsCert\": {\n \"type\": \"string\"\n },\n \"tlsKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"transportSocketConnectTimeout\": {\n \"type\": \"string\"\n },\n \"verifySubjectAltName\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"virtualHost\": {\n \"properties\": {\n \"domains\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cors\": {\n \"properties\": {\n \"allowCredentials\": {\n \"type\": \"boolean\"\n },\n \"allowHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOrigin\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOriginRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableForRoute\": {\n \"type\": \"boolean\"\n },\n \"exposeHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxAge\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dlp\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"disabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"overrides\": {\n \"properties\": {\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"includeAttemptCountInResponse\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"includeRequestAttemptCount\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"jwt\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jwtStaged\": {\n \"properties\": {\n \"afterExtAuth\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"beforeExtAuth\": {\n \"properties\": {\n \"allowMissingOrFailedJwt\": {\n \"type\": \"boolean\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"audiences\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"claimsToHeaders\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"type\": \"boolean\"\n },\n \"claim\": {\n \"type\": \"string\"\n },\n \"header\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clockSkewSeconds\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"issuer\": {\n \"type\": \"string\"\n },\n \"jwks\": {\n \"properties\": {\n \"local\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"remote\": {\n \"properties\": {\n \"asyncFetch\": {\n \"properties\": {\n \"fastListener\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cacheDuration\": {\n \"type\": \"string\"\n },\n \"upstreamRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"keepToken\": {\n \"type\": \"boolean\"\n },\n \"tokenSource\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"header\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"queryParams\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitEarlyConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitRegularConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitBasic\": {\n \"properties\": {\n \"anonymousLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"authorizedLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitEarly\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitRegular\": {\n \"properties\": {\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n },\n \"policies\": {\n \"additionalProperties\": {\n \"properties\": {\n \"nestedClaimDelimiter\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"properties\": {\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"principals\": {\n \"items\": {\n \"properties\": {\n \"jwtPrincipal\": {\n \"properties\": {\n \"claims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"provider\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retries\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"type\": \"string\"\n },\n \"previousPriorities\": {\n \"properties\": {\n \"updateFrequency\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"stats\": {\n \"properties\": {\n \"virtualClusters\": {\n \"items\": {\n \"properties\": {\n \"method\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"pattern\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"optionsConfigRefs\": {\n \"properties\": {\n \"delegateOptions\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"routes\": {\n \"items\": {\n \"properties\": {\n \"delegateAction\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"expressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"directResponseAction\": {\n \"properties\": {\n \"body\": {\n \"type\": \"string\"\n },\n \"status\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"graphqlApiRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"inheritableMatchers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritablePathMatchers\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"properties\": {\n \"ai\": {\n \"properties\": {\n \"backupModels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"defaults\": {\n \"items\": {\n \"properties\": {\n \"field\": {\n \"type\": \"string\"\n },\n \"override\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"promptEnrichment\": {\n \"properties\": {\n \"append\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"prepend\": {\n \"items\": {\n \"properties\": {\n \"content\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"promptGuard\": {\n \"properties\": {\n \"request\": {\n \"properties\": {\n \"customResponseMessage\": {\n \"type\": \"string\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"response\": {\n \"properties\": {\n \"builtins\": {\n \"items\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"array\"\n },\n \"matches\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rag\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"postgres\": {\n \"properties\": {\n \"collectionName\": {\n \"type\": \"string\"\n },\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"promptTemplate\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"semanticCache\": {\n \"properties\": {\n \"datastore\": {\n \"properties\": {\n \"redis\": {\n \"properties\": {\n \"connectionString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"embedding\": {\n \"properties\": {\n \"openai\": {\n \"properties\": {\n \"authToken\": {\n \"properties\": {\n \"inline\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ttl\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"appendXForwardedHost\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"autoHostRewrite\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cors\": {\n \"properties\": {\n \"allowCredentials\": {\n \"type\": \"boolean\"\n },\n \"allowHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowMethods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOrigin\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allowOriginRegex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableForRoute\": {\n \"type\": \"boolean\"\n },\n \"exposeHeaders\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxAge\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dlp\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"actionType\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"customAction\": {\n \"properties\": {\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"regexActions\": {\n \"items\": {\n \"properties\": {\n \"regex\": {\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"keyValueAction\": {\n \"properties\": {\n \"keyToMask\": {\n \"type\": \"string\"\n },\n \"maskChar\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"percent\": {\n \"properties\": {\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"shadow\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enabledFor\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"envoyMetadata\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extProc\": {\n \"properties\": {\n \"disabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"overrides\": {\n \"properties\": {\n \"asyncMode\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"grpcService\": {\n \"properties\": {\n \"authority\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"extProcServerRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initialMetadata\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryPolicy\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"processingMode\": {\n \"properties\": {\n \"requestBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"requestTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseBodyMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseHeaderMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"responseTrailerMode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"requestAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseAttributes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"typedMetadataContextNamespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"faults\": {\n \"properties\": {\n \"abort\": {\n \"properties\": {\n \"httpStatus\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n },\n \"delay\": {\n \"properties\": {\n \"fixedDelay\": {\n \"type\": \"string\"\n },\n \"percentage\": {\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"hostRewrite\": {\n \"type\": \"string\"\n },\n \"hostRewriteHeader\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"hostRewritePathRegex\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"type\": \"string\"\n },\n \"jwt\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"jwtStaged\": {\n \"properties\": {\n \"afterExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"beforeExtAuth\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"lbHash\": {\n \"properties\": {\n \"hashPolicies\": {\n \"items\": {\n \"properties\": {\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"ttl\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"sourceIp\": {\n \"type\": \"boolean\"\n },\n \"terminal\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"maxStreamDuration\": {\n \"properties\": {\n \"grpcTimeoutHeaderMax\": {\n \"type\": \"string\"\n },\n \"grpcTimeoutHeaderOffset\": {\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"prefixRewrite\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"rateLimitConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitEarlyConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimitRegularConfigs\": {\n \"properties\": {\n \"refs\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimit\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitBasic\": {\n \"properties\": {\n \"anonymousLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"authorizedLimits\": {\n \"properties\": {\n \"requestsPerUnit\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"unit\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitEarly\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitRegular\": {\n \"properties\": {\n \"includeVhRateLimits\": {\n \"type\": \"boolean\"\n },\n \"localRatelimit\": {\n \"properties\": {\n \"fillInterval\": {\n \"type\": \"string\"\n },\n \"maxTokens\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"tokensPerFill\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"rateLimits\": {\n \"items\": {\n \"properties\": {\n \"actions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"limit\": {\n \"properties\": {\n \"dynamicMetadata\": {\n \"properties\": {\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"setActions\": {\n \"items\": {\n \"properties\": {\n \"destinationCluster\": {\n \"type\": \"object\"\n },\n \"genericKey\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerValueMatch\": {\n \"properties\": {\n \"descriptorValue\": {\n \"type\": \"string\"\n },\n \"expectMatch\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"exactMatch\": {\n \"type\": \"string\"\n },\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"prefixMatch\": {\n \"type\": \"string\"\n },\n \"presentMatch\": {\n \"type\": \"boolean\"\n },\n \"rangeMatch\": {\n \"properties\": {\n \"end\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n },\n \"start\": {\n \"format\": \"int64\",\n \"type\": \"integer\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"regexMatch\": {\n \"type\": \"string\"\n },\n \"suffixMatch\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"defaultValue\": {\n \"type\": \"string\"\n },\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"metadataKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"remoteAddress\": {\n \"type\": \"object\"\n },\n \"requestHeaders\": {\n \"properties\": {\n \"descriptorKey\": {\n \"type\": \"string\"\n },\n \"headerName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sourceCluster\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"rbac\": {\n \"properties\": {\n \"disable\": {\n \"type\": \"boolean\"\n },\n \"policies\": {\n \"additionalProperties\": {\n \"properties\": {\n \"nestedClaimDelimiter\": {\n \"type\": \"string\"\n },\n \"permissions\": {\n \"properties\": {\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pathPrefix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"principals\": {\n \"items\": {\n \"properties\": {\n \"jwtPrincipal\": {\n \"properties\": {\n \"claims\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"matcher\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"provider\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"regexRewrite\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retries\": {\n \"properties\": {\n \"numRetries\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"type\": \"string\"\n },\n \"previousPriorities\": {\n \"properties\": {\n \"updateFrequency\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"retryBackOff\": {\n \"properties\": {\n \"baseInterval\": {\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowing\": {\n \"properties\": {\n \"percentage\": {\n \"type\": \"number\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"tracing\": {\n \"properties\": {\n \"propagate\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"routeDescriptor\": {\n \"type\": \"string\"\n },\n \"tracePercentages\": {\n \"properties\": {\n \"clientSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"overallSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"randomSamplePercentage\": {\n \"nullable\": true,\n \"type\": \"number\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upgrades\": {\n \"items\": {\n \"properties\": {\n \"connect\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"websocket\": {\n \"properties\": {\n \"enabled\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"waf\": {\n \"properties\": {\n \"auditLogging\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"location\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"configMapRuleSets\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataMapKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"coreRuleSet\": {\n \"properties\": {\n \"customSettingsFile\": {\n \"type\": \"string\"\n },\n \"customSettingsString\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customInterventionMessage\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"requestHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"responseHeadersOnly\": {\n \"type\": \"boolean\"\n },\n \"ruleSets\": {\n \"items\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"files\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleStr\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"optionsConfigRefs\": {\n \"properties\": {\n \"delegateOptions\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"redirectAction\": {\n \"properties\": {\n \"hostRedirect\": {\n \"type\": \"string\"\n },\n \"httpsRedirect\": {\n \"type\": \"boolean\"\n },\n \"pathRedirect\": {\n \"type\": \"string\"\n },\n \"portRedirect\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"prefixRewrite\": {\n \"type\": \"string\"\n },\n \"regexRewrite\": {\n \"properties\": {\n \"pattern\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"substitution\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseCode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"stripQuery\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"routeAction\": {\n \"properties\": {\n \"clusterHeader\": {\n \"type\": \"string\"\n },\n \"dynamicForwardProxy\": {\n \"properties\": {\n \"autoHostRewriteHeader\": {\n \"type\": \"string\"\n },\n \"hostRewrite\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"multi\": {\n \"properties\": {\n \"destinations\": {\n \"items\": {\n \"properties\": {\n \"destination\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"options\": {\n \"properties\": {\n \"bufferPerRoute\": {\n \"properties\": {\n \"buffer\": {\n \"properties\": {\n \"maxRequestBytes\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csrf\": {\n \"properties\": {\n \"additionalOrigins\": {\n \"items\": {\n \"properties\": {\n \"exact\": {\n \"type\": \"string\"\n },\n \"ignoreCase\": {\n \"type\": \"boolean\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"safeRegex\": {\n \"properties\": {\n \"googleRe2\": {\n \"properties\": {\n \"maxProgramSize\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"suffix\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filterEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"shadowEnabled\": {\n \"properties\": {\n \"defaultValue\": {\n \"properties\": {\n \"denominator\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"numerator\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeKey\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extauth\": {\n \"properties\": {\n \"configRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"customAuth\": {\n \"properties\": {\n \"contextExtensions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"disable\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extensions\": {\n \"properties\": {\n \"configs\": {\n \"additionalProperties\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"headerManipulation\": {\n \"properties\": {\n \"requestHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"headerSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToAdd\": {\n \"items\": {\n \"properties\": {\n \"append\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"header\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseHeadersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"stagedTransformations\": {\n \"properties\": {\n \"early\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"inheritTransformation\": {\n \"type\": \"boolean\"\n },\n \"logRequestResponseInfo\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"postRouting\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"regular\": {\n \"properties\": {\n \"requestTransforms\": {\n \"items\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"matcher\": {\n \"properties\": {\n \"caseSensitive\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"connectMatcher\": {\n \"type\": \"object\"\n },\n \"exact\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"methods\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"queryParameters\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"regex\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseTransforms\": {\n \"items\": {\n \"properties\": {\n \"matchers\": {\n \"items\": {\n \"properties\": {\n \"invertMatch\": {\n \"type\": \"boolean\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"regex\": {\n \"type\": \"boolean\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"responseCodeDetails\": {\n \"type\": \"string\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"transformations\": {\n \"properties\": {\n \"clearRouteCache\": {\n \"type\": \"boolean\"\n },\n \"requestTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"headerBodyTransform\": {\n \"properties\": {\n \"addRequestMetadata\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"logRequestResponseInfo\": {\n \"type\": \"boolean\"\n },\n \"transformationTemplate\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"xsltTransformation\": {\n \"properties\": {\n \"nonXmlTransform\": {\n \"type\": \"boolean\"\n },\n \"setContentType\": {\n \"type\": \"string\"\n },\n \"xslt\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"nullable\": true,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"single\": {\n \"properties\": {\n \"consul\": {\n \"properties\": {\n \"dataCenters\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"serviceName\": {\n \"type\": \"string\"\n },\n \"tags\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"destinationSpec\": {\n \"properties\": {\n \"aws\": {\n \"properties\": {\n \"invocationStyle\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"logicalName\": {\n \"type\": \"string\"\n },\n \"requestTransformation\": {\n \"type\": \"boolean\"\n },\n \"responseTransformation\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsAlb\": {\n \"type\": \"boolean\"\n },\n \"unwrapAsApiGateway\": {\n \"type\": \"boolean\"\n },\n \"wrapAsApiGateway\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"azure\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"grpc\": {\n \"properties\": {\n \"function\": {\n \"type\": \"string\"\n },\n \"package\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"rest\": {\n \"properties\": {\n \"functionName\": {\n \"type\": \"string\"\n },\n \"parameters\": {\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"responseTransformation\": {\n \"properties\": {\n \"advancedTemplates\": {\n \"type\": \"boolean\"\n },\n \"body\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dynamicMetadataValues\": {\n \"items\": {\n \"properties\": {\n \"jsonToProto\": {\n \"type\": \"boolean\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"metadataNamespace\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"escapeCharacters\": {\n \"type\": \"boolean\"\n },\n \"extractors\": {\n \"additionalProperties\": {\n \"properties\": {\n \"body\": {\n \"maxProperties\": 0,\n \"type\": \"object\"\n },\n \"header\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacementText\": {\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"subgroup\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"headersToAppend\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"headersToRemove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreErrorOnParse\": {\n \"type\": \"boolean\"\n },\n \"mergeExtractorsToBody\": {\n \"type\": \"object\"\n },\n \"parseBodyBehavior\": {\n \"type\": \"string\",\n \"x-kubernetes-int-or-string\": true\n },\n \"passthrough\": {\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"kube\": {\n \"properties\": {\n \"port\": {\n \"maximum\": 4294967295,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"ref\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"subset\": {\n \"properties\": {\n \"values\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstream\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"upstreamGroup\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Virtual Service\",\n \"type\": \"object\"\n}", + "version": "gateway.solo.io/v1" + }, + "configuration": null, + "description": "", + "displayName": "Virtual Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz" + }, + "model": { + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://storage.googleapis.com/solo-public-helm/charts/gloo-1.18.0-beta9.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/model.json b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/model.json new file mode 100644 index 00000000000..e2f0542743a --- /dev/null +++ b/server/meshmodel/gloo/1.18.0-beta19/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Orchestration \u0026 Management" + }, + "displayName": "Gloo", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.18.0-beta19" + }, + "name": "gloo", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "API Gateway", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/ClusterIssuer.json b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/ClusterIssuer.json new file mode 100644 index 00000000000..fee9632be67 --- /dev/null +++ b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/ClusterIssuer.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ClusterIssuer", + "schema": "{\n \"description\": \"ClusterIssuer is the Schema for the clusterissuers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"IssuerSpec defines the desired state of Issuer\",\n \"properties\": {\n \"authSecretName\": {\n \"description\": \"A reference to a Secret in the same namespace as the referent. If the referent is a ClusterIssuer, the reference instead refers to the resource with the given name in the configured 'cluster resource namespace', which is set as a flag on the controller component (and defaults to the namespace that the controller runs in).\",\n \"type\": \"string\"\n },\n \"caBundle\": {\n \"description\": \"CaBundle contains the CA bundle required to trust the Horizon endpoint certificate\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is a map of labels that will override labels set at the Certificate or Ingress levels.\",\n \"type\": \"object\"\n },\n \"owner\": {\n \"description\": \"Owner will override the owner value set at the Certificate or Ingress levels.\",\n \"type\": \"string\"\n },\n \"profile\": {\n \"description\": \"The Horizon Profile that will be used to enroll certificates. Your authenticated principal should have rights over this Profile.\",\n \"type\": \"string\"\n },\n \"revokeCertificates\": {\n \"default\": false,\n \"description\": \"RevokeCertificates controls whether this issuer should revoke certificates that have been issued through it when their Kubernetes object is deleted.\",\n \"type\": \"boolean\"\n },\n \"skipTLSVerify\": {\n \"default\": false,\n \"description\": \"SkipTLSVerify indicates if untrusted certificates should be allowed when connecting to the Horizon instance.\",\n \"type\": \"boolean\"\n },\n \"team\": {\n \"description\": \"Team will override the team value set at the Certificate or Ingress levels.\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"URL is the base URL of your Horizon instance, for instance: \\\"https://horizon.yourcompany.com\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"authSecretName\",\n \"profile\",\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Cluster Issuer\",\n \"type\": \"object\"\n}", + "version": "horizon.evertrust.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cluster Issuer", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://repo.evertrust.io/repository/charts/horizon-issuer-0.0.1.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "Horizon Issuer", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://repo.evertrust.io/repository/charts/horizon-issuer-0.0.1.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "0.2.3" + }, + "name": "horizon-issuer", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/Issuer.json b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/Issuer.json new file mode 100644 index 00000000000..bfe2e602d38 --- /dev/null +++ b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/components/Issuer.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Issuer", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"IssuerSpec defines the desired state of Issuer\",\n \"properties\": {\n \"authSecretName\": {\n \"description\": \"A reference to a Secret in the same namespace as the referent. If the referent is a ClusterIssuer, the reference instead refers to the resource with the given name in the configured 'cluster resource namespace', which is set as a flag on the controller component (and defaults to the namespace that the controller runs in).\",\n \"type\": \"string\"\n },\n \"caBundle\": {\n \"description\": \"CaBundle contains the CA bundle required to trust the Horizon endpoint certificate\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is a map of labels that will override labels set at the Certificate or Ingress levels.\",\n \"type\": \"object\"\n },\n \"owner\": {\n \"description\": \"Owner will override the owner value set at the Certificate or Ingress levels.\",\n \"type\": \"string\"\n },\n \"profile\": {\n \"description\": \"The Horizon Profile that will be used to enroll certificates. Your authenticated principal should have rights over this Profile.\",\n \"type\": \"string\"\n },\n \"revokeCertificates\": {\n \"default\": false,\n \"description\": \"RevokeCertificates controls whether this issuer should revoke certificates that have been issued through it when their Kubernetes object is deleted.\",\n \"type\": \"boolean\"\n },\n \"skipTLSVerify\": {\n \"default\": false,\n \"description\": \"SkipTLSVerify indicates if untrusted certificates should be allowed when connecting to the Horizon instance.\",\n \"type\": \"boolean\"\n },\n \"team\": {\n \"description\": \"Team will override the team value set at the Certificate or Ingress levels.\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"URL is the base URL of your Horizon instance, for instance: \\\"https://horizon.yourcompany.com\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"authSecretName\",\n \"profile\",\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Issuer\",\n \"type\": \"object\"\n}", + "version": "horizon.evertrust.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Issuer", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://repo.evertrust.io/repository/charts/horizon-issuer-0.0.1.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "Horizon Issuer", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://repo.evertrust.io/repository/charts/horizon-issuer-0.0.1.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "0.2.3" + }, + "name": "horizon-issuer", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/model.json b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/model.json new file mode 100644 index 00000000000..54cd1ab5f90 --- /dev/null +++ b/server/meshmodel/horizon-issuer/0.2.3/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Uncategorized" + }, + "displayName": "Horizon Issuer", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "0.2.3" + }, + "name": "horizon-issuer", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json new file mode 100644 index 00000000000..9cc1e654010 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CassandraDatacenter", + "schema": "{\n \"description\": \"CassandraDatacenter is the Schema for the cassandradatacenters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CassandraDatacenterSpec defines the desired state of a CassandraDatacenter\",\n \"format\": \"textarea\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Additional Annotations allows to define additional labels that will be included in all objects created by the operator. Note, user can override values set by default from the cass-operator and doing so could break cass-operator functionality.\",\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Additional Labels allows to define additional labels that will be included in all objects created by the operator. Note, user can override values set by default from the cass-operator and doing so could break cass-operator functionality.\",\n \"type\": \"object\"\n },\n \"additionalSeeds\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalServiceConfig\": {\n \"description\": \"AdditionalServiceConfig allows to define additional parameters that are included in the created Services. Note, user can override values set by cass-operator and doing so could break cass-operator functionality.\\nAvoid label \\\"cass-operator\\\" and anything that starts with \\\"cassandra.datastax.com/\\\"\",\n \"properties\": {\n \"additionalSeedService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allpodsService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowMultipleNodesPerWorker\": {\n \"description\": \"Turning this option on allows multiple server pods to be created on a k8s worker node, by removing the default pod anti affinity rules.\\nBy default the operator creates just one server pod per k8s worker node. Using custom affinity rules might require turning this\\noption on in which case the defaults are not set.\",\n \"type\": \"boolean\"\n },\n \"canaryUpgrade\": {\n \"description\": \"Indicates that configuration and container image changes should only be pushed to\\nthe first rack of the datacenter\",\n \"type\": \"boolean\"\n },\n \"canaryUpgradeCount\": {\n \"description\": \"The number of nodes that will be updated when CanaryUpgrade is true. Note that the value is\\neither 0 or greater than the rack size, then all nodes in the rack will get updated.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"cdc\": {\n \"description\": \"CDC allows configuration of the change data capture agent which can run within the Management API container. Use it to send data to Pulsar.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"The name by which CQL clients and instances will know the cluster. If the same\\ncluster name is shared by multiple Datacenters in the same Kubernetes namespace,\\nthey will join together in a multi-datacenter cluster.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"configBuilderImage\": {\n \"description\": \"Container image for the config builder init container. Overrides value from ImageConfig ConfigBuilderImage\",\n \"type\": \"string\"\n },\n \"configBuilderResources\": {\n \"description\": \"Kubernetes resource requests and limits per server config initialization container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"configSecret\": {\n \"description\": \"ConfigSecret is the name of a secret that contains configuration for Cassandra. The\\nsecret is expected to have a property named config whose value should be a JSON\\nformatted string that should look like this:\\n\\n\\n config: |-\\n {\\n \\\"cassandra-yaml\\\": {\\n \\\"read_request_timeout_in_ms\\\": 10000\\n },\\n \\\"jmv-options\\\": {\\n \\\"max_heap_size\\\": 1024M\\n }\\n }\\n\\n\\nConfigSecret is mutually exclusive with Config. ConfigSecret takes precedence and\\nwill be used exclusively if both properties are set. The operator sets a watch such\\nthat an update to the secret will trigger an update of the StatefulSets.\",\n \"type\": \"string\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"disableSystemLoggerSidecar\": {\n \"description\": \"Configuration for disabling the simple log tailing sidecar container. Our default is to have it enabled.\",\n \"type\": \"boolean\"\n },\n \"dockerImageRunsAsCassandra\": {\n \"description\": \"DEPRECATED This setting does nothing and defaults to true. Use SecurityContext instead.\",\n \"type\": \"boolean\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"forceUpgradeRacks\": {\n \"description\": \"Rack names in this list are set to the latest StatefulSet configuration\\neven if Cassandra nodes are down. Use this to recover from an upgrade that couldn't\\nroll out.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"managementApiAuth\": {\n \"description\": \"Config for the Management API certificates\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds sets the minimum number of seconds for which a newly created pod should be ready without any of its containers crashing, for it to be considered available. Defaults to 5 seconds and is set in the StatefulSet spec.\\nSetting to 0 might cause multiple Cassandra pods to restart at the same time despite PodDisruptionBudget settings.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"networking\": {\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the Datacenter, using node affinity\",\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A map of label keys and values to restrict Cassandra node scheduling to k8s workers\\nwith matchiing labels.\\nMore info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"podTemplateSpec\": {\n \"description\": \"PodTemplate provides customisation options (labels, annotations, affinity rules, resource requests, and so on) for the cassandra pods\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the pod.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to\\nStartTime before the system will actively try to mark it failed and kill associated containers.\\nValue must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"description\": \"List of containers belonging to the pod.\\nContainers cannot currently be added or removed.\\nThere must be at least one container in a Pod.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod.\\nDefaults to \\\"ClusterFirst\\\".\\nValid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.\\nDNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy.\\nTo have DNS options set along with hostNetwork, you have to specify DNS policy\\nexplicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's\\nenvironment variables, matching the syntax of Docker links.\\nOptional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"description\": \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing\\npod to perform user-initiated actions such as debugging. This list cannot be specified when\\ncreating a pod, and it cannot be modified by updating the pod spec. In order to add an\\nephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.\",\n \"items\": {\n \"description\": \"An EphemeralContainer is a temporary container that you may add to an existing Pod for\\nuser-initiated activities such as debugging. Ephemeral containers have no resource or\\nscheduling guarantees, and they will not be restarted when they exit or when a Pod is\\nremoved or restarted. The kubelet may evict a Pod if an ephemeral container causes the\\nPod to exceed its resource allocation.\\n\\n\\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing\\nPod. Ephemeral containers may not be removed or restarted.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Lifecycle is not allowed for ephemeral containers.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the ephemeral container specified as a DNS_LABEL.\\nThis name must be unique among all containers, init containers and ephemeral containers.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"Ports are not allowed for ephemeral containers.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources\\nalready allocated to the pod.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for the container to manage the restart behavior of each\\ncontainer within a pod.\\nThis may only be set for init containers. You cannot set this field on\\nephemeral containers.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"Optional: SecurityContext defines the security options the ephemeral container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"description\": \"If set, the name of the container from PodSpec that this ephemeral container targets.\\nThe ephemeral container will be run in the namespaces (IPC, PID, etc) of this container.\\nIf not set then the ephemeral container uses the namespaces configured in the Pod spec.\\n\\n\\nThe container runtime must implement support for this feature. If the runtime does not\\nsupport namespace targeting then the result of setting this field is undefined.\",\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts\\nfile if specified. This is only valid for non-hostNetwork pods.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace.\\nIf this option is set, the ports that will be used must be specified.\\nDefault to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n \"description\": \"Use the host's user namespace.\\nOptional: Default to true.\\nIf set to true or not present, the pod will be run in the host user namespace, useful\\nfor when the pod needs a feature only available to the host user namespace, such as\\nloading a kernel module with CAP_SYS_MODULE.\\nWhen set to false, a new userns is created for the pod. Setting false is useful for\\nmitigating container breakout vulnerabilities even allowing users to run their\\ncontainers as root without actually having root privileges on the host.\\nThis field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Specifies the hostname of the Pod\\nIf not specified, the pod's hostname will be set to a system-defined value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec.\\nIf specified, these secrets will be passed to individual puller implementations for them to use.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"List of initialization containers belonging to the pod.\\nInit containers are executed in order prior to containers being started. If any\\ninit container fails, the pod is considered to have failed and is handled according\\nto its restartPolicy. The name for an init container or normal container must be\\nunique among all containers.\\nInit containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes.\\nThe resourceRequirements of an init container are taken into account during scheduling\\nby finding the highest request/limit for each resource type, and then using the max of\\nof that value or the sum of the normal containers. Limits are applied to init containers\\nin a similar fashion.\\nInit containers cannot currently be added or removed.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty,\\nthe scheduler simply schedules this pod onto that node, assuming that it fits resource\\nrequirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node.\\nSelector which must match a node's labels for the pod to be scheduled on that node.\\nMore info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod.\\nSome pod and container fields are restricted if this is set.\\n\\n\\nIf the OS field is set to linux, the following fields must be unset:\\n-securityContext.windowsOptions\\n\\n\\nIf the OS field is set to windows, following fields must be unset:\\n- spec.hostPID\\n- spec.hostIPC\\n- spec.hostUsers\\n- spec.securityContext.seLinuxOptions\\n- spec.securityContext.seccompProfile\\n- spec.securityContext.fsGroup\\n- spec.securityContext.fsGroupChangePolicy\\n- spec.securityContext.sysctls\\n- spec.shareProcessNamespace\\n- spec.securityContext.runAsUser\\n- spec.securityContext.runAsGroup\\n- spec.securityContext.supplementalGroups\\n- spec.containers[*].securityContext.seLinuxOptions\\n- spec.containers[*].securityContext.seccompProfile\\n- spec.containers[*].securityContext.capabilities\\n- spec.containers[*].securityContext.readOnlyRootFilesystem\\n- spec.containers[*].securityContext.privileged\\n- spec.containers[*].securityContext.allowPrivilegeEscalation\\n- spec.containers[*].securityContext.procMount\\n- spec.containers[*].securityContext.runAsUser\\n- spec.containers[*].securityContext.runAsGroup\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows.\\nAdditional value may be defined in future and can be one of:\\nhttps://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration\\nClients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass.\\nThis field will be autopopulated at admission time by the RuntimeClass admission controller. If\\nthe RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests.\\nThe RuntimeClass admission controller will reject Pod create requests which have the overhead already\\nset. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value\\ndefined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero.\\nMore info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority.\\nOne of Never, PreemptLowerPriority.\\nDefaults to PreemptLowerPriority if unset.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the\\npriority of the pod. When Priority Admission Controller is enabled, it\\nprevents users from setting this field. The admission controller populates\\nthis field from PriorityClassName.\\nThe higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and\\n\\\"system-cluster-critical\\\" are two special keywords which indicate the\\nhighest priorities with the former being the highest priority. Any other\\nname must be defined by creating a PriorityClass object with that name.\\nIf not specified, the pod priority will be default or zero if there is no\\ndefault.\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"If specified, all readiness gates will be evaluated for pod readiness.\\nA pod is ready when all its containers are ready AND\\nall conditions specified in the readiness gates have status equal to \\\"True\\\"\\nMore info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resourceClaims\": {\n \"description\": \"ResourceClaims defines which ResourceClaims must be allocated\\nand reserved before the Pod is allowed to start. The resources\\nwill be made available to those containers which consume them\\nby name.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable.\",\n \"items\": {\n \"description\": \"PodResourceClaim references exactly one ResourceClaim through a ClaimSource.\\nIt adds a name to it that uniquely identifies the ResourceClaim inside the Pod.\\nContainers that need access to the ResourceClaim reference it with this name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name uniquely identifies this resource claim inside the pod.\\nThis must be a DNS_LABEL.\",\n \"type\": \"string\"\n },\n \"source\": {\n \"description\": \"Source describes where to find the ResourceClaim.\",\n \"properties\": {\n \"resourceClaimName\": {\n \"description\": \"ResourceClaimName is the name of a ResourceClaim object in the same\\nnamespace as this pod.\",\n \"type\": \"string\"\n },\n \"resourceClaimTemplateName\": {\n \"description\": \"ResourceClaimTemplateName is the name of a ResourceClaimTemplate\\nobject in the same namespace as this pod.\\n\\n\\nThe template will be used to create a new ResourceClaim, which will\\nbe bound to this pod. When this pod is deleted, the ResourceClaim\\nwill also be deleted. The pod name and resource name, along with a\\ngenerated component, will be used to form a unique name for the\\nResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\\n\\n\\nThis field is immutable and no changes will be made to the\\ncorresponding ResourceClaim by the control plane after creating the\\nResourceClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for all containers within the pod.\\nOne of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.\\nDefault to Always.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used\\nto run this pod. If no RuntimeClass resource matches the named class, the pod will not be run.\\nIf unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an\\nempty definition that uses the default runtime handler.\\nMore info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler.\\nIf not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"schedulingGates\": {\n \"description\": \"SchedulingGates is an opaque list of values that if specified will block scheduling the pod.\\nIf schedulingGates is not empty, the pod will stay in the SchedulingGated state and the\\nscheduler will not attempt to schedule the pod.\\n\\n\\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.\\n\\n\\nThis is a beta feature enabled by the PodSchedulingReadiness feature gate.\",\n \"items\": {\n \"description\": \"PodSchedulingGate is associated to a Pod to guard its scheduling.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the scheduling gate.\\nEach scheduling gate must have a unique name field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nOptional: Defaults to empty. See type description for default values of each field.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.\\nDeprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).\\nIn Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).\\nIn Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN.\\nIf a pod does not have FQDN, this has no effect.\\nDefault to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod.\\nWhen this is set containers will be able to view and signal processes from other containers\\nin the same pod, and the first process in each container will not be assigned PID 1.\\nHostPID and ShareProcessNamespace cannot both be set.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"description\": \"If specified, the fully qualified Pod hostname will be \\\"\\u003chostname\\u003e.\\u003csubdomain\\u003e.\\u003cpod namespace\\u003e.svc.\\u003ccluster domain\\u003e\\\".\\nIf not specified, the pod will not have a domainname at all.\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nIf this value is nil, the default grace period will be used instead.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nDefaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology\\ndomains. Scheduler will schedule pods in a way which abides by the constraints.\\nAll topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods.\\nPods that match this label selector are counted to determine the number of pods\\nin their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select the pods over which\\nspreading will be calculated. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are ANDed with labelSelector\\nto select the group of existing pods over which spreading will be calculated\\nfor the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nMatchLabelKeys cannot be set when LabelSelector isn't set.\\nKeys that don't exist in the incoming pod labels will\\nbe ignored. A null or empty list means only match against labelSelector.\\n\\n\\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed.\\nWhen `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference\\nbetween the number of matching pods in the target topology and the global minimum.\\nThe global minimum is the minimum number of matching pods in an eligible domain\\nor zero if the number of eligible domains is less than MinDomains.\\nFor example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same\\nlabelSelector spread as 2/2/1:\\nIn this case, the global minimum is 1.\\n| zone1 | zone2 | zone3 |\\n| P P | P P | P |\\n- if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2;\\nscheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2)\\nviolate MaxSkew(1).\\n- if MaxSkew is 2, incoming pod can be scheduled onto any zone.\\nWhen `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence\\nto topologies that satisfy it.\\nIt's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"description\": \"MinDomains indicates a minimum number of eligible domains.\\nWhen the number of eligible domains with matching topology keys is less than minDomains,\\nPod Topology Spread treats \\\"global minimum\\\" as 0, and then the calculation of Skew is performed.\\nAnd when the number of eligible domains with matching topology keys equals or greater than minDomains,\\nthis value has no effect on scheduling.\\nAs a result, when the number of eligible domains is less than minDomains,\\nscheduler won't schedule more than maxSkew Pods to those domains.\\nIf value is nil, the constraint behaves as if MinDomains is equal to 1.\\nValid values are integers greater than 0.\\nWhen value is not nil, WhenUnsatisfiable must be DoNotSchedule.\\n\\n\\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same\\nlabelSelector spread as 2/2/2:\\n| zone1 | zone2 | zone3 |\\n| P P | P P | P P |\\nThe number of domains is less than 5(MinDomains), so \\\"global minimum\\\" is treated as 0.\\nIn this situation, new pod with the same labelSelector cannot be scheduled,\\nbecause computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones,\\nit will violate MaxSkew.\\n\\n\\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"description\": \"NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector\\nwhen calculating pod topology spread skew. Options are:\\n- Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations.\\n- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\\n\\n\\nIf this value is nil, the behavior is equivalent to the Honor policy.\\nThis is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"description\": \"NodeTaintsPolicy indicates how we will treat node taints when calculating\\npod topology spread skew. Options are:\\n- Honor: nodes without taints, along with tainted nodes for which the incoming pod\\nhas a toleration, are included.\\n- Ignore: node taints are ignored. All nodes are included.\\n\\n\\nIf this value is nil, the behavior is equivalent to the Ignore policy.\\nThis is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key\\nand identical values are considered to be in the same topology.\\nWe consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number\\nof pods into each bucket.\\nWe define a domain as a particular instance of a topology.\\nAlso, we define an eligible domain as a domain whose nodes meet the requirements of\\nnodeAffinityPolicy and nodeTaintsPolicy.\\ne.g. If TopologyKey is \\\"kubernetes.io/hostname\\\", each Node is a domain of that topology.\\nAnd, if TopologyKey is \\\"topology.kubernetes.io/zone\\\", each zone is a domain of that topology.\\nIt's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy\\nthe spread constraint.\\n- DoNotSchedule (default) tells the scheduler not to schedule it.\\n- ScheduleAnyway tells the scheduler to schedule the pod in any location,\\n but giving higher precedence to topologies that would help reduce the\\n skew.\\nA constraint is considered \\\"Unsatisfiable\\\" for an incoming pod\\nif and only if every possible node assignment for that pod would violate\\n\\\"MaxSkew\\\" on some topology.\\nFor example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same\\nlabelSelector spread as 3/1/1:\\n| zone1 | zone2 | zone3 |\\n| P P P | P | P |\\nIf WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled\\nto zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies\\nMaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler\\nwon't make it *more* imbalanced.\\nIt's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"List of volumes that can be mounted by containers belonging to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"A list of the named racks in the datacenter, representing independent failure domains. The\\nnumber of racks should match the replication factor in the keyspaces you plan to create, and\\nthe number of racks cannot easily be changed once a datacenter is deployed.\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"ReadOnlyRootFilesystem makes the cassandra container to be run with a read-only root filesystem. Currently only functional when used with the\\nnew k8ssandra-client config builder (Cassandra 4.1 and newer and HCD)\",\n \"type\": \"boolean\"\n },\n \"replaceNodes\": {\n \"description\": \"Deprecated Use CassandraTask replacenode to achieve correct node replacement. A list of pod names that need to be replaced.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Kubernetes resource requests and limits, per pod\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rollingRestartRequested\": {\n \"description\": \"Deprecated. Use CassandraTask for rolling restarts. Whether to do a rolling restart at the next opportunity. The operator will set this back\\nto false once the restart is in progress.\",\n \"type\": \"boolean\"\n },\n \"serverImage\": {\n \"description\": \"Cassandra server image name. Use of ImageConfig to match ServerVersion is recommended instead of this value.\\nThis value will override anything set in the ImageConfig matching the ServerVersion\\nMore info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"serverType\": {\n \"description\": \"Server type: \\\"cassandra\\\", \\\"dse\\\" or \\\"hcd\\\"\",\n \"enum\": [\n \"cassandra\",\n \"dse\",\n \"hcd\"\n ],\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"Version string for config builder,\\nused to generate Cassandra server configuration\",\n \"pattern\": \"(6\\\\.[89]\\\\.\\\\d+)|(3\\\\.11\\\\.\\\\d+)|(4\\\\.\\\\d+\\\\.\\\\d+)|(5\\\\.\\\\d+\\\\.\\\\d+)|(1\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"Deprecated DeprecatedServiceAccount Use ServiceAccountName instead, which takes precedence. The k8s service account to use for the server pods\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the Kubernetes service account to use for the server pods. This takes presedence over DeprecatedServiceAccount and both take precedence over\\nsetting it in the PodTemplateSpec.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"description\": \"Desired number of Cassandra server nodes\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"stopped\": {\n \"description\": \"A stopped CassandraDatacenter will have no running server pods, like using \\\"stop\\\" with\\ntraditional System V init scripts. Other Kubernetes resources will be left intact, and volumes\\nwill re-attach when the CassandraDatacenter workload is resumed.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig describes the persistent storage request of each server node\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"superuserSecretName\": {\n \"description\": \"This secret defines the username and password for the Cassandra server superuser.\\nIf it is omitted, we will generate a secret instead.\",\n \"type\": \"string\"\n },\n \"systemLoggerImage\": {\n \"description\": \"Container image for the log tailing sidecar container. Overrides value from ImageConfig SystemLoggerImage\",\n \"type\": \"string\"\n },\n \"systemLoggerResources\": {\n \"description\": \"Kubernetes resource requests and limits per system logger container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Cassandra pod. Note that these cannot be overridden with PodTemplateSpec.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"users\": {\n \"description\": \"Cassandra users to bootstrap\",\n \"items\": {\n \"properties\": {\n \"secretName\": {\n \"type\": \"string\"\n },\n \"superuser\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"secretName\",\n \"superuser\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"clusterName\",\n \"serverType\",\n \"serverVersion\",\n \"size\",\n \"storageConfig\"\n ],\n \"type\": \"string\"\n }\n },\n \"title\": \"Cassandra Datacenter\",\n \"type\": \"object\"\n}", + "version": "cassandra.datastax.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "Cassandra Datacenter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json new file mode 100644 index 00000000000..11fccfb06d6 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CassandraTask", + "schema": "{\n \"description\": \"CassandraTask is the Schema for the cassandrajobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CassandraTaskSpec defines the desired state of CassandraTask\",\n \"properties\": {\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this task can be run concurrently with other active tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"datacenter\": {\n \"description\": \"Which datacenter this task is targetting. Note, this must be a datacenter which the current cass-operator\\ncan access\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"jobs\": {\n \"description\": \"Jobs defines the jobs this task will execute (and their order)\",\n \"items\": {\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments are additional parameters for the command\",\n \"properties\": {\n \"end_token\": {\n \"type\": \"string\"\n },\n \"jobs\": {\n \"type\": \"integer\"\n },\n \"keyspace_name\": {\n \"type\": \"string\"\n },\n \"new_tokens\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NewTokens is a map of pod names to their newly-assigned tokens. Required for the move\\ncommand, ignored otherwise. Pods referenced in this map must exist; any existing pod not\\nreferenced in this map will not be moved.\",\n \"type\": \"object\"\n },\n \"no_snapshot\": {\n \"type\": \"boolean\"\n },\n \"no_validate\": {\n \"description\": \"Scrub arguments\",\n \"type\": \"boolean\"\n },\n \"pod_name\": {\n \"type\": \"string\"\n },\n \"rack\": {\n \"type\": \"string\"\n },\n \"skip_corrupted\": {\n \"type\": \"boolean\"\n },\n \"source_datacenter\": {\n \"type\": \"string\"\n },\n \"split_output\": {\n \"description\": \"Compaction arguments\",\n \"type\": \"boolean\"\n },\n \"start_token\": {\n \"type\": \"string\"\n },\n \"tables\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"command\": {\n \"description\": \"Command defines what is run against Cassandra pods\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"command\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy indicates the behavior n case of failure. Default is Never.\",\n \"type\": \"string\"\n },\n \"scheduledTime\": {\n \"description\": \"ScheduledTime indicates the earliest possible time this task is executed. This does not necessarily\\nequal to the time it is actually executed (if other tasks are blocking for example). If not set,\\nthe task will be executed immediately.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"TTLSecondsAfterFinished defines how long the completed job will kept before being cleaned up. If set to 0\\nthe task will not be cleaned up by the cass-operator. If unset, the default time (86400s) is used.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Cassandra Task\",\n \"type\": \"object\"\n}", + "version": "control.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cassandra Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json new file mode 100644 index 00000000000..864bf6aafef --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ClientConfig", + "schema": "{\n \"description\": \"ClientConfig is the Schema for the kubeconfigs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ClientConfigSpec defines the desired state of KubeConfig\",\n \"properties\": {\n \"contextName\": {\n \"description\": \"ContextName allows to override the object name for context-name. If not set, the ClientConfig.Name is used as context name\",\n \"type\": \"string\"\n },\n \"kubeConfigSecret\": {\n \"description\": \"KubeConfigSecret should reference an existing secret; the actual configuration will be read from\\nthis secret's \\\"kubeconfig\\\" key.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Client Config\",\n \"type\": \"object\"\n}", + "version": "config.k8ssandra.io/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "Client Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json new file mode 100644 index 00000000000..908ca4df88f --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "K8ssandraCluster", + "schema": "{\n \"description\": \"K8ssandraCluster is the Schema for the k8ssandraclusters API. The K8ssandraCluster CRD name is also the name of the\\nCassandra cluster (which corresponds to cluster_name in cassandra.yaml).\",\n \"properties\": {\n \"spec\": {\n \"description\": \"K8ssandraClusterSpec defines the desired state of K8ssandraCluster\",\n \"properties\": {\n \"auth\": {\n \"default\": true,\n \"description\": \"Whether to enable authentication in this cluster. The default is true; it is highly recommended to always leave\\nauthentication turned on. When enabled, authentication will be enforced not only on Cassandra nodes, but also on\\nReaper, Medusa and Stargate nodes, if any.\",\n \"type\": \"boolean\"\n },\n \"cassandra\": {\n \"description\": \"Cassandra is a specification of the Cassandra cluster. This includes everything from\\nthe number of datacenters, the k8s cluster where each DC should be deployed, node\\naffinity (via racks), individual C* node settings, JVM settings, and more.\",\n \"properties\": {\n \"additionalSeeds\": {\n \"description\": \"AdditionalSeeds specifies Cassandra node IPs for an existing datacenter. This is\\nprimarily intended for migrations from an existing Cassandra cluster that is not\\nmanaged by k8ssandra-operator. Note that this property should NOT be used to set\\nseeds for a DC that is or will be managed by k8ssandra-operator. k8ssandra-operator\\nalready manages seeds for DCs that it manages. If you have DNS set up such that you\\ncan resolve hostnames for the remote Cassandra cluster, then you can specify hostnames\\nhere; otherwise, use IP addresses.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cdc\": {\n \"description\": \"CDC defines the desired state for CDC integrations. It can be used to feed mutation events from Cassandra into an Apache Pulsar cluster,\\nfrom where they can be expored to external systems.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"Override the Cassandra cluster name. If unspecified, the cluster name will be the same as the K8ssandraCluster\\nCRD name.\",\n \"type\": \"string\"\n },\n \"config\": {\n \"description\": \"CassandraConfig contains configuration settings that are applied to cassandra.yaml, dse.yaml\\nand the various jvm*.options files.\",\n \"properties\": {\n \"cassandraYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"dseYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"jvmOptions\": {\n \"properties\": {\n \"additionalJvm11ServerOptions\": {\n \"description\": \"Jvm11ServerOptions are additional options that will be passed on to the jvm11-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvm8ServerOptions\": {\n \"description\": \"Jvm8ServerOptions are additional options that will be passed on to the jvm8-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvmServerOptions\": {\n \"description\": \"JvmServerOptions are additional options that will be passed on to the jvm-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalOptions\": {\n \"description\": \"Additional, arbitrary JVM options which are written into the cassandra-env.sh file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cassandra_available_processors\": {\n \"description\": \"Available CPU processors.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.available_processors.\",\n \"type\": \"integer\"\n },\n \"cassandra_disable_auth_caches_remote_configuration\": {\n \"description\": \"Disable remote configuration via JMX of auth caches.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.disable_auth_caches_remote_configuration.\",\n \"type\": \"boolean\"\n },\n \"cassandra_expiration_date_overflow_policy\": {\n \"description\": \"Defines how to handle INSERT requests with TTL exceeding the maximum supported expiration\\ndate.\\nPossible values include `REJECT`, `CAP`, `CAP_NOWARN`.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.expiration_date_overflow_policy.\",\n \"type\": \"string\"\n },\n \"cassandra_force_3_0_protocol_version\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Dcassandra.force_3_0_protocol_version=true.\",\n \"type\": \"boolean\"\n },\n \"cassandra_force_default_indexing_page_size\": {\n \"description\": \"Disable dynamic calculation of the page size used when indexing an entire partition (during\\ninitial index build/rebuild).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.force_default_indexing_page_size.\",\n \"type\": \"boolean\"\n },\n \"cassandra_max_hint_ttl_seconds\": {\n \"description\": \"Imposes an upper bound on hint lifetime below the normal min gc_grace_seconds.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.maxHintTTL.\",\n \"type\": \"integer\"\n },\n \"cassandra_metrics_reporter_config_file\": {\n \"description\": \"Enable pluggable metrics reporter.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.metricsReporterConfigFile.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_ring_delay_ms\": {\n \"description\": \"Amount of time in milliseconds that a node waits before joining the ring.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.ring_delay_ms.\",\n \"type\": \"integer\"\n },\n \"cassandra_triggers_directory\": {\n \"description\": \"Default location for the trigger JARs.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.triggers_dir.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_write_survey\": {\n \"description\": \"For testing new compaction and compression strategies.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.write_survey.\",\n \"type\": \"boolean\"\n },\n \"debug_disable_contended_annotations\": {\n \"description\": \"Disable honoring user code @Contended annotations.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-RestrictContended.\",\n \"type\": \"boolean\"\n },\n \"debug_enable_flight_recorder\": {\n \"description\": \"Enable Flight Recorder (Use in production is subject to Oracle licensing).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+FlightRecorder.\",\n \"type\": \"boolean\"\n },\n \"debug_listen_remote_debuggers\": {\n \"description\": \"Listen for JVM remote debuggers on port 1414.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414\\\".\",\n \"type\": \"boolean\"\n },\n \"debug_log_compilation\": {\n \"description\": \"Make Cassandra JVM log internal method compilation (developers only).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+LogCompilation.\",\n \"type\": \"boolean\"\n },\n \"debug_non_safepoints\": {\n \"description\": \"Whether the compiler should generate the necessary metadata for the parts of the code not at\\nsafe points as well. For use with Flight Recorder.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+DebugNonSafepoints.\",\n \"type\": \"boolean\"\n },\n \"debug_preserve_frame_pointer\": {\n \"description\": \"Preserve Frame Pointer.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PreserveFramePointer.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_commercial_features\": {\n \"description\": \"Unlock commercial features.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockCommercialFeatures.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_diagnostic_vm_options\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockDiagnosticVMOptions.\",\n \"type\": \"boolean\"\n },\n \"gc\": {\n \"default\": \"G1GC\",\n \"description\": \"The name of the garbage collector to use. Depending on the Cassandra version, not all values\\nare supported: Cassandra 3.11 supports only G1GC and CMS; Cassandra 4.0 supports G1GC, ZGC,\\nShenandoah and Graal. This option will unlock the corresponding garbage collector with a\\ndefault configuration; to further tune the GC settings, use the additional JVM options field.\\nUse the special value Custom if you intend to use non-standard garbage collectors.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\",\n \"enum\": [\n \"G1GC\",\n \"CMS\",\n \"ZGC\",\n \"Shenandoah\",\n \"Graal\",\n \"Custom\"\n ],\n \"type\": \"string\"\n },\n \"gc_cms_heap_size_young_generation\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xmn.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_cms_initiating_occupancy_fraction\": {\n \"description\": \"Defaults to 75. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSInitiatingOccupancyFraction.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_cms_max_tenuring_threshold\": {\n \"description\": \"Defaults to 1. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:MaxTenuringThreshold.\",\n \"type\": \"integer\"\n },\n \"gc_cms_survivor_ratio\": {\n \"description\": \"Defaults to 8. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:SurvivorRatio.\",\n \"type\": \"integer\"\n },\n \"gc_cms_wait_duration_ms\": {\n \"description\": \"Defaults to 10000. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSWaitDuration.\",\n \"type\": \"integer\"\n },\n \"gc_g1_conc_threads\": {\n \"description\": \"Concurrent GC Threads. Can only be used when G1 garbage collector is used.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ConcGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_initiating_heap_occupancy_percent\": {\n \"description\": \"Initiating Heap Occupancy Percentage. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:InitiatingHeapOccupancyPercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_g1_max_gc_pause_ms\": {\n \"description\": \"G1GC Max GC Pause in milliseconds. Defaults to 500. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:MaxGCPauseMillis.\",\n \"type\": \"integer\"\n },\n \"gc_g1_parallel_threads\": {\n \"description\": \"Parallel GC Threads. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ParallelGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_rset_updating_pause_time_percent\": {\n \"description\": \"G1GC Updating Pause Time Percentage. Defaults to 5. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:G1RSetUpdatingPauseTimePercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_print_application_stopped_time\": {\n \"description\": \"Print GC Application Stopped Time.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCApplicationStoppedTime.\",\n \"type\": \"boolean\"\n },\n \"gc_print_date_stamps\": {\n \"description\": \"Print GC Date Stamps. Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDateStamps.\",\n \"type\": \"boolean\"\n },\n \"gc_print_details\": {\n \"description\": \"Print GC details.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDetails.\",\n \"type\": \"boolean\"\n },\n \"gc_print_flss_statistics\": {\n \"description\": \"Print FLSS Statistics.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:PrintFLSStatistics=1.\",\n \"type\": \"boolean\"\n },\n \"gc_print_heap\": {\n \"description\": \"Print Heap at GC.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintHeapAtGC.\",\n \"type\": \"boolean\"\n },\n \"gc_print_log_file_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size of each log file.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:GCLogFileSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_print_number_of_log_files\": {\n \"description\": \"Number of GC log files.\\nDisabled by default. Can only be used when the G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:NumberOfGCLogFiles.\",\n \"type\": \"integer\"\n },\n \"gc_print_promotion_failure\": {\n \"description\": \"Print promotion failure.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintPromotionFailure.\",\n \"type\": \"boolean\"\n },\n \"gc_print_tenuring_distribution\": {\n \"description\": \"Print tenuring distribution.\\nDefaults to false.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintTenuringDistribution.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file\": {\n \"description\": \"Whether to print GC logs to /var/log/cassandra/gc.log.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xloggc:/var/log/cassandra/gc.log.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file_rotation\": {\n \"description\": \"Use GC Log File Rotation.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+UseGCLogFileRotation.\",\n \"type\": \"boolean\"\n },\n \"heapNewGenSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use gc_cms_heap_size_young_generation instead.\\nValid for CMS garbage collector only + Cassandra 3.11.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use heap_initial_size and heap_max_size instead. If this field is defined,\\nit applies to both max_heap_size and initial_heap_size.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_initial_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xms.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_max_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xmx.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"jdk_allow_attach_self\": {\n \"description\": \"Allow the current VM to attach to itself.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Djdk.attach.allowAttachSelf=true.\",\n \"type\": \"boolean\"\n },\n \"jmx_connection_type\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nPossible values for 3.11 include `local-no-auth`, `remote-no-auth`, and `remote-dse-unified-auth`. Defaults to `local-no-auth`.\\nPossible values for 4.0 include `local-no-auth`, `remote-no-auth`. Defaults to `local-no-auth`.\",\n \"type\": \"string\"\n },\n \"jmx_port\": {\n \"description\": \"Disabled by default. Defaults to 7199.\\nTODO Make Reaper aware of the JMX port if a non-default port is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"integer\"\n },\n \"jmx_remote_ssl\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nDefaults to false.\\nValid only when JmxConnectionType is \\\"remote-no-auth\\\", \\\"remote-dse-unified-auth\\\".\",\n \"type\": \"boolean\"\n },\n \"jmx_remote_ssl_opts\": {\n \"description\": \"Remote SSL options.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"string\"\n },\n \"jmx_remote_ssl_require_client_auth\": {\n \"description\": \"Require Client Authentication for remote SSL? Defaults to false.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"boolean\"\n },\n \"netty_eventloop_maxpendingtasks\": {\n \"description\": \"Defaults to 65536.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dio.netty.eventLoop.maxPendingTasks.\",\n \"type\": \"integer\"\n },\n \"netty_try_reflection_set_accessible\": {\n \"description\": \"Netty setting `io.netty.tryReflectionSetAccessible`.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Dio.netty.tryReflectionSetAccessible=true.\",\n \"type\": \"boolean\"\n },\n \"nio_align_direct_memory\": {\n \"description\": \"Align direct memory allocations on page boundaries.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dsun.nio.PageAlignDirectMemory=true.\",\n \"type\": \"boolean\"\n },\n \"nio_maxcachedbuffersize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Defaults to 1048576.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djdk.nio.maxCachedBufferSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_always_pre_touch\": {\n \"description\": \"Ensure all memory is faulted and zeroed on startup.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+AlwaysPreTouch.\",\n \"type\": \"boolean\"\n },\n \"vm_crash_on_out_of_memory_error\": {\n \"description\": \"Disabled by default. Requires `exit_on_out_of_memory_error` to be disabled..\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+CrashOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_biased_locking\": {\n \"description\": \"Disable biased locking to avoid biased lock revocation pauses.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-UseBiasedLocking.\\nNote: the Cass Config Builder option is named use_biased_locking, but setting it to true\\ndisables biased locking.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_perf_shared_mem\": {\n \"description\": \"Disable hsperfdata mmap'ed file.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PerfDisableSharedMem.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_assertions\": {\n \"description\": \"Enable assertions.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -ea.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_non_root_thread_priority\": {\n \"description\": \"Enable lowering thread priority without being root on linux.\\nSee CASSANDRA-1181 for details.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:ThreadPriorityPolicy=42.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_thread_priorities\": {\n \"description\": \"Enable thread priorities.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseThreadPriorities.\",\n \"type\": \"boolean\"\n },\n \"vm_exit_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ExitOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_guaranteed_safepoint_interval_ms\": {\n \"description\": \"Defaults to 300000 milliseconds.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:GuaranteedSafepointInterval.\",\n \"type\": \"integer\"\n },\n \"vm_heap_dump_on_out_of_memory_error\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+HeapDumpOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_per_thread_stack_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Per-thread stack size.\\nDefaults to 256Ki.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xss.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_prefer_ipv4\": {\n \"description\": \"Prefer binding to IPv4 network interfaces.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djava.net.preferIPv4Stack=true.\",\n \"type\": \"boolean\"\n },\n \"vm_print_heap_histogram_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.printHeapHistogramOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_resize_tlab\": {\n \"description\": \"Allow resizing of thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ResizeTLAB.\",\n \"type\": \"boolean\"\n },\n \"vm_string_table_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The size of interned string table. Larger sizes are beneficial to gossip.\\nDefaults to 1000003.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:StringTableSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_use_numa\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseNUMA.\",\n \"type\": \"boolean\"\n },\n \"vm_use_tlab\": {\n \"description\": \"Enable thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseTLAB.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers defines containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own containers, which can be referenced here to override specific settings,\\nsuch as mounts or resources request/limits for example.\\nExample:\\n containers:\\n - name: server-system-logger\\n - name: custom-container\\n image: busybox\\n - name: cassandra\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"datacenters\": {\n \"description\": \"Datacenters a list of the DCs in the cluster.\",\n \"items\": {\n \"properties\": {\n \"cdc\": {\n \"description\": \"CDC defines the desired state for CDC integrations. It can be used to feed mutation events from Cassandra into an Apache Pulsar cluster,\\nfrom where they can be expored to external systems.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"config\": {\n \"description\": \"CassandraConfig contains configuration settings that are applied to cassandra.yaml, dse.yaml\\nand the various jvm*.options files.\",\n \"properties\": {\n \"cassandraYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"dseYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"jvmOptions\": {\n \"properties\": {\n \"additionalJvm11ServerOptions\": {\n \"description\": \"Jvm11ServerOptions are additional options that will be passed on to the jvm11-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvm8ServerOptions\": {\n \"description\": \"Jvm8ServerOptions are additional options that will be passed on to the jvm8-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvmServerOptions\": {\n \"description\": \"JvmServerOptions are additional options that will be passed on to the jvm-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalOptions\": {\n \"description\": \"Additional, arbitrary JVM options which are written into the cassandra-env.sh file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cassandra_available_processors\": {\n \"description\": \"Available CPU processors.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.available_processors.\",\n \"type\": \"integer\"\n },\n \"cassandra_disable_auth_caches_remote_configuration\": {\n \"description\": \"Disable remote configuration via JMX of auth caches.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.disable_auth_caches_remote_configuration.\",\n \"type\": \"boolean\"\n },\n \"cassandra_expiration_date_overflow_policy\": {\n \"description\": \"Defines how to handle INSERT requests with TTL exceeding the maximum supported expiration\\ndate.\\nPossible values include `REJECT`, `CAP`, `CAP_NOWARN`.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.expiration_date_overflow_policy.\",\n \"type\": \"string\"\n },\n \"cassandra_force_3_0_protocol_version\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Dcassandra.force_3_0_protocol_version=true.\",\n \"type\": \"boolean\"\n },\n \"cassandra_force_default_indexing_page_size\": {\n \"description\": \"Disable dynamic calculation of the page size used when indexing an entire partition (during\\ninitial index build/rebuild).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.force_default_indexing_page_size.\",\n \"type\": \"boolean\"\n },\n \"cassandra_max_hint_ttl_seconds\": {\n \"description\": \"Imposes an upper bound on hint lifetime below the normal min gc_grace_seconds.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.maxHintTTL.\",\n \"type\": \"integer\"\n },\n \"cassandra_metrics_reporter_config_file\": {\n \"description\": \"Enable pluggable metrics reporter.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.metricsReporterConfigFile.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_ring_delay_ms\": {\n \"description\": \"Amount of time in milliseconds that a node waits before joining the ring.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.ring_delay_ms.\",\n \"type\": \"integer\"\n },\n \"cassandra_triggers_directory\": {\n \"description\": \"Default location for the trigger JARs.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.triggers_dir.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_write_survey\": {\n \"description\": \"For testing new compaction and compression strategies.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.write_survey.\",\n \"type\": \"boolean\"\n },\n \"debug_disable_contended_annotations\": {\n \"description\": \"Disable honoring user code @Contended annotations.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-RestrictContended.\",\n \"type\": \"boolean\"\n },\n \"debug_enable_flight_recorder\": {\n \"description\": \"Enable Flight Recorder (Use in production is subject to Oracle licensing).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+FlightRecorder.\",\n \"type\": \"boolean\"\n },\n \"debug_listen_remote_debuggers\": {\n \"description\": \"Listen for JVM remote debuggers on port 1414.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414\\\".\",\n \"type\": \"boolean\"\n },\n \"debug_log_compilation\": {\n \"description\": \"Make Cassandra JVM log internal method compilation (developers only).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+LogCompilation.\",\n \"type\": \"boolean\"\n },\n \"debug_non_safepoints\": {\n \"description\": \"Whether the compiler should generate the necessary metadata for the parts of the code not at\\nsafe points as well. For use with Flight Recorder.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+DebugNonSafepoints.\",\n \"type\": \"boolean\"\n },\n \"debug_preserve_frame_pointer\": {\n \"description\": \"Preserve Frame Pointer.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PreserveFramePointer.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_commercial_features\": {\n \"description\": \"Unlock commercial features.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockCommercialFeatures.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_diagnostic_vm_options\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockDiagnosticVMOptions.\",\n \"type\": \"boolean\"\n },\n \"gc\": {\n \"default\": \"G1GC\",\n \"description\": \"The name of the garbage collector to use. Depending on the Cassandra version, not all values\\nare supported: Cassandra 3.11 supports only G1GC and CMS; Cassandra 4.0 supports G1GC, ZGC,\\nShenandoah and Graal. This option will unlock the corresponding garbage collector with a\\ndefault configuration; to further tune the GC settings, use the additional JVM options field.\\nUse the special value Custom if you intend to use non-standard garbage collectors.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\",\n \"enum\": [\n \"G1GC\",\n \"CMS\",\n \"ZGC\",\n \"Shenandoah\",\n \"Graal\",\n \"Custom\"\n ],\n \"type\": \"string\"\n },\n \"gc_cms_heap_size_young_generation\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xmn.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_cms_initiating_occupancy_fraction\": {\n \"description\": \"Defaults to 75. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSInitiatingOccupancyFraction.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_cms_max_tenuring_threshold\": {\n \"description\": \"Defaults to 1. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:MaxTenuringThreshold.\",\n \"type\": \"integer\"\n },\n \"gc_cms_survivor_ratio\": {\n \"description\": \"Defaults to 8. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:SurvivorRatio.\",\n \"type\": \"integer\"\n },\n \"gc_cms_wait_duration_ms\": {\n \"description\": \"Defaults to 10000. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSWaitDuration.\",\n \"type\": \"integer\"\n },\n \"gc_g1_conc_threads\": {\n \"description\": \"Concurrent GC Threads. Can only be used when G1 garbage collector is used.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ConcGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_initiating_heap_occupancy_percent\": {\n \"description\": \"Initiating Heap Occupancy Percentage. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:InitiatingHeapOccupancyPercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_g1_max_gc_pause_ms\": {\n \"description\": \"G1GC Max GC Pause in milliseconds. Defaults to 500. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:MaxGCPauseMillis.\",\n \"type\": \"integer\"\n },\n \"gc_g1_parallel_threads\": {\n \"description\": \"Parallel GC Threads. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ParallelGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_rset_updating_pause_time_percent\": {\n \"description\": \"G1GC Updating Pause Time Percentage. Defaults to 5. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:G1RSetUpdatingPauseTimePercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_print_application_stopped_time\": {\n \"description\": \"Print GC Application Stopped Time.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCApplicationStoppedTime.\",\n \"type\": \"boolean\"\n },\n \"gc_print_date_stamps\": {\n \"description\": \"Print GC Date Stamps. Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDateStamps.\",\n \"type\": \"boolean\"\n },\n \"gc_print_details\": {\n \"description\": \"Print GC details.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDetails.\",\n \"type\": \"boolean\"\n },\n \"gc_print_flss_statistics\": {\n \"description\": \"Print FLSS Statistics.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:PrintFLSStatistics=1.\",\n \"type\": \"boolean\"\n },\n \"gc_print_heap\": {\n \"description\": \"Print Heap at GC.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintHeapAtGC.\",\n \"type\": \"boolean\"\n },\n \"gc_print_log_file_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size of each log file.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:GCLogFileSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_print_number_of_log_files\": {\n \"description\": \"Number of GC log files.\\nDisabled by default. Can only be used when the G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:NumberOfGCLogFiles.\",\n \"type\": \"integer\"\n },\n \"gc_print_promotion_failure\": {\n \"description\": \"Print promotion failure.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintPromotionFailure.\",\n \"type\": \"boolean\"\n },\n \"gc_print_tenuring_distribution\": {\n \"description\": \"Print tenuring distribution.\\nDefaults to false.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintTenuringDistribution.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file\": {\n \"description\": \"Whether to print GC logs to /var/log/cassandra/gc.log.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xloggc:/var/log/cassandra/gc.log.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file_rotation\": {\n \"description\": \"Use GC Log File Rotation.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+UseGCLogFileRotation.\",\n \"type\": \"boolean\"\n },\n \"heapNewGenSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use gc_cms_heap_size_young_generation instead.\\nValid for CMS garbage collector only + Cassandra 3.11.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use heap_initial_size and heap_max_size instead. If this field is defined,\\nit applies to both max_heap_size and initial_heap_size.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_initial_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xms.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_max_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xmx.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"jdk_allow_attach_self\": {\n \"description\": \"Allow the current VM to attach to itself.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Djdk.attach.allowAttachSelf=true.\",\n \"type\": \"boolean\"\n },\n \"jmx_connection_type\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nPossible values for 3.11 include `local-no-auth`, `remote-no-auth`, and `remote-dse-unified-auth`. Defaults to `local-no-auth`.\\nPossible values for 4.0 include `local-no-auth`, `remote-no-auth`. Defaults to `local-no-auth`.\",\n \"type\": \"string\"\n },\n \"jmx_port\": {\n \"description\": \"Disabled by default. Defaults to 7199.\\nTODO Make Reaper aware of the JMX port if a non-default port is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"integer\"\n },\n \"jmx_remote_ssl\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nDefaults to false.\\nValid only when JmxConnectionType is \\\"remote-no-auth\\\", \\\"remote-dse-unified-auth\\\".\",\n \"type\": \"boolean\"\n },\n \"jmx_remote_ssl_opts\": {\n \"description\": \"Remote SSL options.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"string\"\n },\n \"jmx_remote_ssl_require_client_auth\": {\n \"description\": \"Require Client Authentication for remote SSL? Defaults to false.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"boolean\"\n },\n \"netty_eventloop_maxpendingtasks\": {\n \"description\": \"Defaults to 65536.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dio.netty.eventLoop.maxPendingTasks.\",\n \"type\": \"integer\"\n },\n \"netty_try_reflection_set_accessible\": {\n \"description\": \"Netty setting `io.netty.tryReflectionSetAccessible`.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Dio.netty.tryReflectionSetAccessible=true.\",\n \"type\": \"boolean\"\n },\n \"nio_align_direct_memory\": {\n \"description\": \"Align direct memory allocations on page boundaries.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dsun.nio.PageAlignDirectMemory=true.\",\n \"type\": \"boolean\"\n },\n \"nio_maxcachedbuffersize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Defaults to 1048576.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djdk.nio.maxCachedBufferSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_always_pre_touch\": {\n \"description\": \"Ensure all memory is faulted and zeroed on startup.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+AlwaysPreTouch.\",\n \"type\": \"boolean\"\n },\n \"vm_crash_on_out_of_memory_error\": {\n \"description\": \"Disabled by default. Requires `exit_on_out_of_memory_error` to be disabled..\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+CrashOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_biased_locking\": {\n \"description\": \"Disable biased locking to avoid biased lock revocation pauses.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-UseBiasedLocking.\\nNote: the Cass Config Builder option is named use_biased_locking, but setting it to true\\ndisables biased locking.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_perf_shared_mem\": {\n \"description\": \"Disable hsperfdata mmap'ed file.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PerfDisableSharedMem.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_assertions\": {\n \"description\": \"Enable assertions.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -ea.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_non_root_thread_priority\": {\n \"description\": \"Enable lowering thread priority without being root on linux.\\nSee CASSANDRA-1181 for details.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:ThreadPriorityPolicy=42.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_thread_priorities\": {\n \"description\": \"Enable thread priorities.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseThreadPriorities.\",\n \"type\": \"boolean\"\n },\n \"vm_exit_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ExitOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_guaranteed_safepoint_interval_ms\": {\n \"description\": \"Defaults to 300000 milliseconds.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:GuaranteedSafepointInterval.\",\n \"type\": \"integer\"\n },\n \"vm_heap_dump_on_out_of_memory_error\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+HeapDumpOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_per_thread_stack_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Per-thread stack size.\\nDefaults to 256Ki.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xss.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_prefer_ipv4\": {\n \"description\": \"Prefer binding to IPv4 network interfaces.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djava.net.preferIPv4Stack=true.\",\n \"type\": \"boolean\"\n },\n \"vm_print_heap_histogram_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.printHeapHistogramOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_resize_tlab\": {\n \"description\": \"Allow resizing of thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ResizeTLAB.\",\n \"type\": \"boolean\"\n },\n \"vm_string_table_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The size of interned string table. Larger sizes are beneficial to gossip.\\nDefaults to 1000003.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:StringTableSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_use_numa\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseNUMA.\",\n \"type\": \"boolean\"\n },\n \"vm_use_tlab\": {\n \"description\": \"Enable thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseTLAB.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers defines containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own containers, which can be referenced here to override specific settings,\\nsuch as mounts or resources request/limits for example.\\nExample:\\n containers:\\n - name: server-system-logger\\n - name: custom-container\\n image: busybox\\n - name: cassandra\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extraVolumes\": {\n \"description\": \"Volumes defines additional volumes to be added to each Cassandra pod.\\nIf the volume uses a PersistentVolumeClaim, the PVC will be managed by the statefulset.\",\n \"properties\": {\n \"pvcs\": {\n \"description\": \"PVCs defines additional volumes to be added to each Cassandra pod and managed by the statefulset.\\nSuch volumes are automatically mounted by cass-operator into the cassandra containers.\",\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes defines volumes to be added to each Cassandra pod.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers defines init-containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own init-containers, which can be referenced here to control ordering or override specific settings\\nsuch as mounts or resources request/limits for example.\\nOnly the name of the k8ssandra-operator/cass-operator init-containers is required, not their full definition which will be created by the operators.\\nExample:\\n initContainers:\\n - name: server-config-init\\n - name: custom-init-container\\n image: busybox\\n - name: medusa-restore\\nOtherwise init-containers referenced here will be injected in first position\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jmxInitContainerImage\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. We don't need an init container to configure JMX\\nauthentication anymore. The value of this field will be ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"k8sContext\": {\n \"type\": \"string\"\n },\n \"managementApiAuth\": {\n \"description\": \"ManagementApiAuth defines the authentication settings for the management API in the Cassandra pods.\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"description\": \"labels/annotations for all of the CassandraDatacenter service components\",\n \"properties\": {\n \"additionalSeedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allPodsService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"mgmtAPIHeap\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MgmtAPIHeap defines the amount of memory devoted to the management\\napi heap.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"networking\": {\n \"description\": \"Networking enables host networking and configures a NodePort ports.\",\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"perNodeConfigInitContainerImage\": {\n \"default\": \"mikefarah/yq:4\",\n \"description\": \"The image to use in each Cassandra pod for the (short-lived) init container that merges global and perNodeConfig\\nconfiguration. This is only useful when PerNodeConfigMapRef is set.\\nThe default is \\\"mikefarah/yq:4\\\".\",\n \"type\": \"string\"\n },\n \"perNodeConfigMapRef\": {\n \"description\": \"PerNodeConfigMapRef is a reference to a ConfigMap that contains per-node configuration for\\nthis DC. The ConfigMap is expected to have entries in the following form:\\n\\u003cpod-name\\u003e_\\u003cfile-name\\u003e.yaml, where \\u003cpod-name\\u003e is the name of the pod and \\u003cfile-name\\u003e is the\\nname of a configuration file (typically, cassandra.yaml). The value of the entry is expected\\nto be a YAML fragment that contains the per-node configuration for each pod. When the pod is\\nstarted, the per-node ConfigMap is mounted and the contents of each entry corresponding to\\nthe pod are merged into their respective configuration files.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext defines the security context for the Cassandra pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks is a list of named racks. Note that racks are used to create node affinity. //\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is the cpu and memory resources for the cassandra container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverImage\": {\n \"description\": \"ServerImage is the image for the cassandra container. Note that this should be a\\nmanagement-api image. If left empty the operator will choose a default image based\\non ServerVersion.\",\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"ServerVersion is the Cassandra or DSE version. The following versions are supported:\\n- Cassandra: 3.11.X, 4.X.X and 5.X.X\\n- DSE: 6.8.X, 7.x.x\\n- HCD: 1.0.x\",\n \"pattern\": \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"The k8s service account to use for the Cassandra pods\",\n \"type\": \"string\"\n },\n \"size\": {\n \"description\": \"Size is the number Cassandra pods to deploy in this datacenter.\\nThis number does not include Stargate instances.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"softPodAntiAffinity\": {\n \"description\": \"SoftPodAntiAffinity sets whether multiple Cassandra instances can be scheduled on the same node.\\nThis should normally be false to ensure cluster resilience but may be set true for test/dev scenarios to minimise\\nthe number of nodes required.\",\n \"type\": \"boolean\"\n },\n \"stargate\": {\n \"description\": \"Stargate defines the desired deployment characteristics for Stargate in this datacenter. Leave nil to skip\\ndeploying Stargate in this datacenter.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks allow customizing Stargate characteristics for specific racks in the datacenter.\",\n \"items\": {\n \"description\": \"StargateRackTemplate defines custom rules for Stargate pods in a given rack.\\nThese rules will be merged with rules defined at datacenter level in a StargateDatacenterTemplate; rack-level rules\\nhave precedence over datacenter-level ones.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the rack name. It must correspond to an existing rack name in the CassandraDatacenter resource where\\nStargate is being deployed, otherwise it will be ignored.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n },\n \"stopped\": {\n \"default\": false,\n \"description\": \"Stopped means that the datacenter will be stopped. Use this for maintenance or for cost saving. A stopped\\nCassandraDatacenter will have no running server pods, like using \\\"stop\\\" with traditional System V init scripts.\\nOther Kubernetes resources will be left intact, and volumes will re-attach when the CassandraDatacenter\\nworkload is resumed.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig is the persistent storage requirements for each Cassandra pod. This\\nincludes everything under /var/lib/cassandra, namely the commit log and data\\ndirectories.\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired state for telemetry resources in this datacenter.\\nIf telemetry configurations are defined, telemetry resources will be deployed to integrate with\\na user-provided monitoring solution (at present, only support for Prometheus is available).\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to every Cassandra pod.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extraVolumes\": {\n \"description\": \"Volumes defines additional volumes to be added to each Cassandra pod.\\nIf the volume uses a PersistentVolumeClaim, the PVC will be managed by the statefulset.\",\n \"properties\": {\n \"pvcs\": {\n \"description\": \"PVCs defines additional volumes to be added to each Cassandra pod and managed by the statefulset.\\nSuch volumes are automatically mounted by cass-operator into the cassandra containers.\",\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes defines volumes to be added to each Cassandra pod.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers defines init-containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own init-containers, which can be referenced here to control ordering or override specific settings\\nsuch as mounts or resources request/limits for example.\\nOnly the name of the k8ssandra-operator/cass-operator init-containers is required, not their full definition which will be created by the operators.\\nExample:\\n initContainers:\\n - name: server-config-init\\n - name: custom-init-container\\n image: busybox\\n - name: medusa-restore\\nOtherwise init-containers referenced here will be injected in first position\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jmxInitContainerImage\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. We don't need an init container to configure JMX\\nauthentication anymore. The value of this field will be ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"managementApiAuth\": {\n \"description\": \"ManagementApiAuth defines the authentication settings for the management API in the Cassandra pods.\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"Struct to hold labels and annotations for the top-level Cassandra cluster definition.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"description\": \"labels/annotations for all of the CassandraDatacenter service components\",\n \"properties\": {\n \"additionalSeedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allPodsService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mgmtAPIHeap\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MgmtAPIHeap defines the amount of memory devoted to the management\\napi heap.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"networking\": {\n \"description\": \"Networking enables host networking and configures a NodePort ports.\",\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"perNodeConfigInitContainerImage\": {\n \"default\": \"mikefarah/yq:4\",\n \"description\": \"The image to use in each Cassandra pod for the (short-lived) init container that merges global and perNodeConfig\\nconfiguration. This is only useful when PerNodeConfigMapRef is set.\\nThe default is \\\"mikefarah/yq:4\\\".\",\n \"type\": \"string\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext defines the security context for the Cassandra pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks is a list of named racks. Note that racks are used to create node affinity. //\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is the cpu and memory resources for the cassandra container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverEncryptionStores\": {\n \"description\": \"Internode encryption stores which are used by Cassandra and Stargate.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"serverImage\": {\n \"description\": \"ServerImage is the image for the cassandra container. Note that this should be a\\nmanagement-api image. If left empty the operator will choose a default image based\\non ServerVersion.\",\n \"type\": \"string\"\n },\n \"serverType\": {\n \"default\": \"cassandra\",\n \"description\": \"Server type: \\\"cassandra\\\" or \\\"dse\\\".\",\n \"enum\": [\n \"cassandra\",\n \"dse\",\n \"hcd\"\n ],\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"ServerVersion is the Cassandra or DSE version. The following versions are supported:\\n- Cassandra: 3.11.X, 4.X.X and 5.X.X\\n- DSE: 6.8.X, 7.x.x\\n- HCD: 1.0.x\",\n \"pattern\": \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"The k8s service account to use for the Cassandra pods\",\n \"type\": \"string\"\n },\n \"softPodAntiAffinity\": {\n \"description\": \"SoftPodAntiAffinity sets whether multiple Cassandra instances can be scheduled on the same node.\\nThis should normally be false to ensure cluster resilience but may be set true for test/dev scenarios to minimise\\nthe number of nodes required.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig is the persistent storage requirements for each Cassandra pod. This\\nincludes everything under /var/lib/cassandra, namely the commit log and data\\ndirectories.\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"superuserSecretRef\": {\n \"description\": \"The reference to the superuser secret to use for Cassandra. If unspecified, a default secret will be generated\\nwith a random password; the generated secret name will be \\\"\\u003ccluster_name\\u003e-superuser\\\" where \\u003ccluster_name\\u003e is the\\nK8ssandraCluster CRD name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired state for telemetry resources in this datacenter.\\nIf telemetry configurations are defined, telemetry resources will be deployed to integrate with\\na user-provided monitoring solution (at present, only support for Prometheus is available).\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to every Cassandra pod.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"externalDatacenters\": {\n \"description\": \"During a migration the operator should alter keyspaces replication settings including the following external DCs.\\nThis avoids removing replicas from datacenters which are outside of the operator scope (not referenced in the CR).\\nReplication settings changes will only apply to system_* keyspaces as well as reaper_db and data_endpoint_auth (Stargate).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"medusa\": {\n \"description\": \"Medusa defines the desired deployment characteristics for Medusa in this K8ssandraCluster.\\nIf this is non-nil, Medusa will be deployed in every Cassandra pod in this K8ssandraCluster.\",\n \"properties\": {\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Medusa will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Medusa instances, so that it can authenticate against nodes in the datacenter using CQL.\\nThe secret must be in the same namespace as Cassandra and must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"certificatesSecretRef\": {\n \"description\": \"Certificates for Medusa if client encryption is enabled in Cassandra.\\nThe secret must be in the same namespace as Cassandra and must contain three keys: \\\"rootca.crt\\\", \\\"client.crt_signed\\\" and \\\"client.key\\\".\\nSee https://docs.datastax.com/en/developer/python-driver/latest/security/ for more information on the required files.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"description\": \"MedusaContainerImage is the image characteristics to use for Medusa containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"containerResources\": {\n \"description\": \"Medusa main container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"medusa-restore init container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Define the liveness probe settings to use for the Medusa containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"medusaConfigurationRef\": {\n \"description\": \"MedusaConfigurationRef points to an existing MedusaConfiguration object.\\nThe purpose is to allow shared default settings across several clusters.\\nStorageProperties override the settings from MedusaConfiguration object to allow customization.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"purgeBackups\": {\n \"default\": true,\n \"description\": \"PurgeBackups toggles if the medusa backups should be purged nightly or not\\nDefaults to true.\",\n \"type\": \"boolean\"\n },\n \"readinessProbe\": {\n \"description\": \"Define the readiness probe settings to use for the Medusa containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Medusa containers.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageProperties\": {\n \"description\": \"Provides all storage backend related properties for backups.\",\n \"properties\": {\n \"apiProfile\": {\n \"description\": \"AWS Profile to use for authentication.\",\n \"type\": \"string\"\n },\n \"backupGracePeriodInDays\": {\n \"description\": \"Age after which orphan sstables can be deleted from the storage backend.\\nProtects from race conditions between purge and ongoing backups.\\nDefaults to 10 days.\",\n \"type\": \"integer\"\n },\n \"bucketName\": {\n \"description\": \"The name of the bucket to use for the backups.\",\n \"type\": \"string\"\n },\n \"concurrentTransfers\": {\n \"default\": 0,\n \"description\": \"Number of concurrent uploads.\\nHelps maximizing the speed of uploads but puts more pressure on the network.\\nDefaults to 0.\",\n \"type\": \"integer\"\n },\n \"credentialsType\": {\n \"description\": \"Type of credentials to use for authentication.\\nCan be \\\"role-based\\\", \\\"credential-based\\\" or empty.\",\n \"enum\": [\n \"role-based\",\n \"credential-based\"\n ],\n \"type\": \"string\"\n },\n \"host\": {\n \"description\": \"Host to connect to for the storage backend.\",\n \"type\": \"string\"\n },\n \"maxBackupAge\": {\n \"default\": 0,\n \"description\": \"Maximum backup age that the purge process should observe.\",\n \"type\": \"integer\"\n },\n \"maxBackupCount\": {\n \"default\": 0,\n \"description\": \"Maximum number of backups to keep (used by the purge process).\\nDefault is unlimited.\",\n \"type\": \"integer\"\n },\n \"multiPartUploadThreshold\": {\n \"default\": 104857600,\n \"description\": \"File size over which cloud specific cli tools are used for transfer.\\nDefaults to 100 MB.\",\n \"type\": \"integer\"\n },\n \"podStorage\": {\n \"description\": \"Pod storage settings for the local storage provider\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"Pod local storage access modes\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"10Gi\",\n \"description\": \"Size of the pod's storage in bytes.\\nDefaults to 10 GB.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Storage class name to use for the pod's storage.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port to connect to for the storage backend.\",\n \"type\": \"integer\"\n },\n \"prefix\": {\n \"description\": \"Name of the top level folder in the backup bucket.\\nIf empty, the cluster name will be used.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"Region of the storage bucket.\\nDefaults to \\\"default\\\".\",\n \"type\": \"string\"\n },\n \"secure\": {\n \"description\": \"Whether to use SSL for the storage backend.\",\n \"type\": \"boolean\"\n },\n \"sslVerify\": {\n \"description\": \"When using SSL, whether to also verify the certificate.\",\n \"type\": \"boolean\"\n },\n \"storageProvider\": {\n \"description\": \"The storage backend to use for the backups.\",\n \"enum\": [\n \"google_storage\",\n \"azure_blobs\",\n \"s3\",\n \"s3_compatible\",\n \"s3_rgw\",\n \"ibm_storage\"\n ],\n \"type\": \"string\"\n },\n \"storageSecretRef\": {\n \"description\": \"Kubernetes Secret that stores the key file for the storage provider's API.\\nIf using 'local' storage, this value is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"transferMaxBandwidth\": {\n \"default\": \"50MB/s\",\n \"description\": \"Max upload bandwidth in MB/s.\\nDefaults to 50 MB/s.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"reaper\": {\n \"description\": \"Reaper defines the desired deployment characteristics for Reaper in this K8ssandraCluster.\\nIf this is non-nil, Reaper might be deployed on every Cassandra datacenter in this K8ssandraCluster, unless\\nthere is a Control Plane Reaper present. In that case, the K8ssandraCluster will get registered to it.\",\n \"properties\": {\n \"ServiceAccountName\": {\n \"default\": \"default\",\n \"type\": \"string\"\n },\n \"affinity\": {\n \"description\": \"Affinity applied to the Reaper pods.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoScheduling\": {\n \"description\": \"Auto scheduling properties. When you enable the auto-schedule feature, Reaper dynamically schedules repairs for\\nall non-system keyspaces in a cluster. A cluster's keyspaces are monitored and any modifications (additions or\\nremovals) are detected. When a new keyspace is created, a new repair schedule is created automatically for that\\nkeyspace. Conversely, when a keyspace is removed, the corresponding repair schedule is deleted.\",\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"excludedClusters\": {\n \"description\": \"ExcludedClusters are the clusters that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludedKeyspaces\": {\n \"description\": \"ExcludedKeyspaces are the keyspaces that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"initialDelayPeriod\": {\n \"default\": \"PT15S\",\n \"description\": \"InitialDelay is the amount of delay time before the schedule period starts. Must be a valid ISO-8601 duration\\nstring. The default is \\\"PT15S\\\" (15 seconds).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"percentUnrepairedThreshold\": {\n \"default\": 10,\n \"description\": \"PercentUnrepairedThreshold is the percentage of unrepaired data over which an incremental repair should be\\nstarted. Only relevant when using repair type INCREMENTAL.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"periodBetweenPolls\": {\n \"default\": \"PT10M\",\n \"description\": \"PeriodBetweenPolls is the interval time to wait before checking whether to start a repair task. Must be a valid\\nISO-8601 duration string. The default is \\\"PT10M\\\" (10 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"repairType\": {\n \"default\": \"AUTO\",\n \"description\": \"RepairType is the type of repair to create:\\n- REGULAR creates a regular repair (non-adaptive and non-incremental);\\n- ADAPTIVE creates an adaptive repair; adaptive repairs are most suited for Cassandra 3.\\n- INCREMENTAL creates an incremental repair; incremental repairs should only be used with Cassandra 4+.\\n- AUTO chooses between ADAPTIVE and INCREMENTAL depending on the Cassandra server version; ADAPTIVE for Cassandra\\n3 and INCREMENTAL for Cassandra 4+.\",\n \"enum\": [\n \"REGULAR\",\n \"ADAPTIVE\",\n \"INCREMENTAL\",\n \"AUTO\"\n ],\n \"type\": \"string\"\n },\n \"scheduleSpreadPeriod\": {\n \"default\": \"PT6H\",\n \"description\": \"ScheduleSpreadPeriod is the time spacing between each of the repair schedules that is to be carried out. Must be\\na valid ISO-8601 duration string. The default is \\\"PT6H\\\" (6 hours).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"timeBeforeFirstSchedule\": {\n \"default\": \"PT5M\",\n \"description\": \"TimeBeforeFirstSchedule is the grace period before the first repair in the schedule is started. Must be a valid\\nISO-8601 duration string. The default is \\\"PT5M\\\" (5 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Reaper will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Reaper instance, so that it can authenticate against nodes in the datacenter using CQL. If CQL\\nauthentication is not required, leave this field empty. The secret must be in the same namespace as Reaper itself\\nand must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"name\": \"cassandra-reaper\",\n \"repository\": \"thelastpickle\",\n \"tag\": \"3.6.1\"\n },\n \"description\": \"The image to use for the Reaper pod main container.\\nThe default is \\\"thelastpickle/cassandra-reaper:3.6.1\\\".\\nTODO: update with real release version.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"deploymentMode\": {\n \"default\": \"PER_DC\",\n \"enum\": [\n \"PER_DC\",\n \"SINGLE\",\n \"CONTROL_PLANE\"\n ],\n \"type\": \"string\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"2Gi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Reaper.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"httpManagement\": {\n \"default\": {\n \"enabled\": false\n },\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enable/disable the HTTP management connection between Reaper and Cassandra.\\nWhen enabled, HTTP will be used instead of JMX for management connectivity between Cassandra\\nand Reaper. In future, this will be true by default\",\n \"type\": \"boolean\"\n },\n \"keystores\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerImage\": {\n \"description\": \"Deprecated: The main container image will be used for the init container as well.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"Init Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerSecurityContext\": {\n \"description\": \"InitContainerSecurityContext is the SecurityContext applied to the Reaper init container, used to perform schema\\nmigrations.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jmxUserSecretRef\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. Reaper will use cassandraUsefSecretRef for authentication,\\nthis field is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keyspace\": {\n \"default\": \"reaper_db\",\n \"description\": \"The keyspace to use to store Reaper's state. Will default to \\\"reaper_db\\\" if unspecified. Will be created if it\\ndoes not exist, and if this Reaper resource is managed by K8ssandra.\",\n \"type\": \"string\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Reaper liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Reaper resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext contains a pod-level SecurityContext to apply to Reaper pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Reaper readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"reaperRef\": {\n \"description\": \"When there is a CONTROL_PLANE Reaper out there, this field allows registering a K8ssandra cluster to it.\\nPopulating this field disables some operator behaviour related to setting Reaper up.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Main Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Reaper main container.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageConfig\": {\n \"description\": \"If StorageType is \\\"local\\\", Reaper will need a Persistent Volume to persist its data. This field allows\\nconfiguring that Persistent Volume.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageType\": {\n \"default\": \"cassandra\",\n \"description\": \"The storage backend to store Reaper's data. Defaults to \\\"cassandra\\\" which causes Reaper to be stateless and store\\nits state to a Cassandra cluster it repairs (implying there must be one Reaper for each Cassandra cluster).\\nThe \\\"local\\\" option makes Reaper to store its state locally, allowing a single Reaper to repair several clusters.\",\n \"enum\": [\n \"cassandra\",\n \"local\"\n ],\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Reaper pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Reaper pods.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uiUserSecretRef\": {\n \"description\": \"Defines the secret which contains the username and password for the Reaper UI and REST API authentication. When UiUserSecretRef.Name == \\\"\\\", authentication is turned off in the front-end only.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend (e.g. vault). This moves the responsibility of generating and\\nstoring secrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"stargate\": {\n \"description\": \"Stargate defines the desired deployment characteristics for Stargate in this K8ssandraCluster.\\nIf this is non-nil, Stargate will be deployed on every Cassandra datacenter in this K8ssandraCluster.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"K8ssandra Cluster\",\n \"type\": \"object\"\n}", + "version": "k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "K8ssandra Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json new file mode 100644 index 00000000000..d776b350fd6 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "K8ssandraTask", + "schema": "{\n \"description\": \"K8ssandraTask is the Schema for the k8ssandratasks API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"K8ssandraTaskSpec defines the desired state of K8ssandraTask\",\n \"properties\": {\n \"cluster\": {\n \"description\": \"Which K8ssandraCluster this task is operating on.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"datacenters\": {\n \"description\": \"The names of the targeted datacenters. If omitted, will default to all DCs in spec order.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dcConcurrencyPolicy\": {\n \"description\": \"How to handle concurrency across DCs. Valid values are:\\n- \\\"Forbid\\\" (default): sequential processing. The K8ssandraTask only spawns one CassandraTask at a time, which\\n must run to completion before the CassandraTask for the next DC is created. If any CassandraTask fails, the\\n K8ssandraTask is marked as failed, and the remaining CassandraTasks are cancelled (i.e. never created).\\n- \\\"Allow\\\": parallel processing. The K8ssandraTask spawns all CassandraTasks at once. If any CassandraTask fails,\\n the K8ssandraTask is marked as failed, but the remaining CassandraTasks finish running.\",\n \"type\": \"string\"\n },\n \"template\": {\n \"description\": \"The characteristics of the CassandraTask that will get created for each DC.\",\n \"properties\": {\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this task can be run concurrently with other active tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"jobs\": {\n \"description\": \"Jobs defines the jobs this task will execute (and their order)\",\n \"items\": {\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments are additional parameters for the command\",\n \"properties\": {\n \"end_token\": {\n \"type\": \"string\"\n },\n \"jobs\": {\n \"type\": \"integer\"\n },\n \"keyspace_name\": {\n \"type\": \"string\"\n },\n \"new_tokens\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NewTokens is a map of pod names to their newly-assigned tokens. Required for the move\\ncommand, ignored otherwise. Pods referenced in this map must exist; any existing pod not\\nreferenced in this map will not be moved.\",\n \"type\": \"object\"\n },\n \"no_snapshot\": {\n \"type\": \"boolean\"\n },\n \"no_validate\": {\n \"description\": \"Scrub arguments\",\n \"type\": \"boolean\"\n },\n \"pod_name\": {\n \"type\": \"string\"\n },\n \"rack\": {\n \"type\": \"string\"\n },\n \"skip_corrupted\": {\n \"type\": \"boolean\"\n },\n \"source_datacenter\": {\n \"type\": \"string\"\n },\n \"split_output\": {\n \"description\": \"Compaction arguments\",\n \"type\": \"boolean\"\n },\n \"start_token\": {\n \"type\": \"string\"\n },\n \"tables\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"command\": {\n \"description\": \"Command defines what is run against Cassandra pods\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"command\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy indicates the behavior n case of failure. Default is Never.\",\n \"type\": \"string\"\n },\n \"scheduledTime\": {\n \"description\": \"ScheduledTime indicates the earliest possible time this task is executed. This does not necessarily\\nequal to the time it is actually executed (if other tasks are blocking for example). If not set,\\nthe task will be executed immediately.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"TTLSecondsAfterFinished defines how long the completed job will kept before being cleaned up. If set to 0\\nthe task will not be cleaned up by the cass-operator. If unset, the default time (86400s) is used.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"K8ssandra Task\",\n \"type\": \"object\"\n}", + "version": "control.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "K8ssandra Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json new file mode 100644 index 00000000000..3e56ad4656c --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackup", + "schema": "{\n \"description\": \"MedusaBackup is the Schema for the medusabackups API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupSpec defines the desired state of MedusaBackup\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json new file mode 100644 index 00000000000..749612aa9f2 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackupJob", + "schema": "{\n \"description\": \"MedusaBackupJob is the Schema for the medusabackupjobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupJobSpec defines the desired state of MedusaBackupJob\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup Job\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup Job", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json new file mode 100644 index 00000000000..abdc87c1126 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackupSchedule", + "schema": "{\n \"description\": \"MedusaBackupSchedule is the Schema for the medusabackupschedules API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupScheduleSpec defines the desired state of MedusaBackupSchedule\",\n \"properties\": {\n \"backupSpec\": {\n \"description\": \"BackupSpec defines the MedusaBackup to be created for this job\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n },\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this backup task can be run concurrently with other active backup tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"cronSchedule\": {\n \"description\": \"CronSchedule is a cronjob format schedule for backups. Overrides any easier methods of defining the schedule\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"disabled\": {\n \"description\": \"Disabled if set ensures this job is not scheduling anything\",\n \"type\": \"boolean\"\n },\n \"operationType\": {\n \"default\": \"backup\",\n \"description\": \"Specifies the type of operation to be performed\",\n \"enum\": [\n \"backup\",\n \"purge\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backupSpec\",\n \"cronSchedule\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup Schedule\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup Schedule", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json new file mode 100644 index 00000000000..9fed7ec4215 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaConfiguration", + "schema": "{\n \"description\": \"MedusaConfiguration is the Schema for the medusaconfigurations API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaConfigurationSpec defines the desired state of MedusaConfiguration\",\n \"properties\": {\n \"storageProperties\": {\n \"description\": \"StorageProperties defines the storage backend settings to use for the backups.\",\n \"properties\": {\n \"apiProfile\": {\n \"description\": \"AWS Profile to use for authentication.\",\n \"type\": \"string\"\n },\n \"backupGracePeriodInDays\": {\n \"description\": \"Age after which orphan sstables can be deleted from the storage backend.\\nProtects from race conditions between purge and ongoing backups.\\nDefaults to 10 days.\",\n \"type\": \"integer\"\n },\n \"bucketName\": {\n \"description\": \"The name of the bucket to use for the backups.\",\n \"type\": \"string\"\n },\n \"concurrentTransfers\": {\n \"default\": 0,\n \"description\": \"Number of concurrent uploads.\\nHelps maximizing the speed of uploads but puts more pressure on the network.\\nDefaults to 0.\",\n \"type\": \"integer\"\n },\n \"credentialsType\": {\n \"description\": \"Type of credentials to use for authentication.\\nCan be \\\"role-based\\\", \\\"credential-based\\\" or empty.\",\n \"enum\": [\n \"role-based\",\n \"credential-based\"\n ],\n \"type\": \"string\"\n },\n \"host\": {\n \"description\": \"Host to connect to for the storage backend.\",\n \"type\": \"string\"\n },\n \"maxBackupAge\": {\n \"default\": 0,\n \"description\": \"Maximum backup age that the purge process should observe.\",\n \"type\": \"integer\"\n },\n \"maxBackupCount\": {\n \"default\": 0,\n \"description\": \"Maximum number of backups to keep (used by the purge process).\\nDefault is unlimited.\",\n \"type\": \"integer\"\n },\n \"multiPartUploadThreshold\": {\n \"default\": 104857600,\n \"description\": \"File size over which cloud specific cli tools are used for transfer.\\nDefaults to 100 MB.\",\n \"type\": \"integer\"\n },\n \"podStorage\": {\n \"description\": \"Pod storage settings for the local storage provider\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"Pod local storage access modes\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"10Gi\",\n \"description\": \"Size of the pod's storage in bytes.\\nDefaults to 10 GB.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Storage class name to use for the pod's storage.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port to connect to for the storage backend.\",\n \"type\": \"integer\"\n },\n \"prefix\": {\n \"description\": \"Name of the top level folder in the backup bucket.\\nIf empty, the cluster name will be used.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"Region of the storage bucket.\\nDefaults to \\\"default\\\".\",\n \"type\": \"string\"\n },\n \"secure\": {\n \"description\": \"Whether to use SSL for the storage backend.\",\n \"type\": \"boolean\"\n },\n \"sslVerify\": {\n \"description\": \"When using SSL, whether to also verify the certificate.\",\n \"type\": \"boolean\"\n },\n \"storageProvider\": {\n \"description\": \"The storage backend to use for the backups.\",\n \"enum\": [\n \"google_storage\",\n \"azure_blobs\",\n \"s3\",\n \"s3_compatible\",\n \"s3_rgw\",\n \"ibm_storage\"\n ],\n \"type\": \"string\"\n },\n \"storageSecretRef\": {\n \"description\": \"Kubernetes Secret that stores the key file for the storage provider's API.\\nIf using 'local' storage, this value is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"transferMaxBandwidth\": {\n \"default\": \"50MB/s\",\n \"description\": \"Max upload bandwidth in MB/s.\\nDefaults to 50 MB/s.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Configuration\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Configuration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json new file mode 100644 index 00000000000..8875ce592b6 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaRestoreJob", + "schema": "{\n \"description\": \"MedusaRestoreJob is the Schema for the medusarestorejobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaRestoreJobSpec defines the desired state of MedusaRestoreJob\",\n \"properties\": {\n \"backup\": {\n \"description\": \"The name of the MedusaBackup to restore.\",\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"Name of the Cassandra datacenter to perform the restore on.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backup\",\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Restore Job\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Restore Job", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json new file mode 100644 index 00000000000..688cd8f2330 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaTask", + "schema": "{\n \"description\": \"MedusaTask is the Schema for the MedusaTasks API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaTaskSpec defines the desired state of MedusaTask\",\n \"properties\": {\n \"backupName\": {\n \"description\": \"Name of the backup.\\nWill be necessary for operations such as verify or status.\",\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to run the task on\",\n \"type\": \"string\"\n },\n \"operation\": {\n \"description\": \"Requested operation to perform.\",\n \"enum\": [\n \"sync\",\n \"purge\",\n \"prepare_restore\"\n ],\n \"type\": \"string\"\n },\n \"restoreKey\": {\n \"description\": \"Restore key to use for the prepare_restore operation.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Task\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json new file mode 100644 index 00000000000..1eef7298382 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Reaper", + "schema": "{\n \"description\": \"Reaper is the Schema for the reapers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ReaperSpec defines the desired state of Reaper\",\n \"properties\": {\n \"ServiceAccountName\": {\n \"default\": \"default\",\n \"type\": \"string\"\n },\n \"affinity\": {\n \"description\": \"Affinity applied to the Reaper pods.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoScheduling\": {\n \"description\": \"Auto scheduling properties. When you enable the auto-schedule feature, Reaper dynamically schedules repairs for\\nall non-system keyspaces in a cluster. A cluster's keyspaces are monitored and any modifications (additions or\\nremovals) are detected. When a new keyspace is created, a new repair schedule is created automatically for that\\nkeyspace. Conversely, when a keyspace is removed, the corresponding repair schedule is deleted.\",\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"excludedClusters\": {\n \"description\": \"ExcludedClusters are the clusters that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludedKeyspaces\": {\n \"description\": \"ExcludedKeyspaces are the keyspaces that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"initialDelayPeriod\": {\n \"default\": \"PT15S\",\n \"description\": \"InitialDelay is the amount of delay time before the schedule period starts. Must be a valid ISO-8601 duration\\nstring. The default is \\\"PT15S\\\" (15 seconds).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"percentUnrepairedThreshold\": {\n \"default\": 10,\n \"description\": \"PercentUnrepairedThreshold is the percentage of unrepaired data over which an incremental repair should be\\nstarted. Only relevant when using repair type INCREMENTAL.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"periodBetweenPolls\": {\n \"default\": \"PT10M\",\n \"description\": \"PeriodBetweenPolls is the interval time to wait before checking whether to start a repair task. Must be a valid\\nISO-8601 duration string. The default is \\\"PT10M\\\" (10 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"repairType\": {\n \"default\": \"AUTO\",\n \"description\": \"RepairType is the type of repair to create:\\n- REGULAR creates a regular repair (non-adaptive and non-incremental);\\n- ADAPTIVE creates an adaptive repair; adaptive repairs are most suited for Cassandra 3.\\n- INCREMENTAL creates an incremental repair; incremental repairs should only be used with Cassandra 4+.\\n- AUTO chooses between ADAPTIVE and INCREMENTAL depending on the Cassandra server version; ADAPTIVE for Cassandra\\n3 and INCREMENTAL for Cassandra 4+.\",\n \"enum\": [\n \"REGULAR\",\n \"ADAPTIVE\",\n \"INCREMENTAL\",\n \"AUTO\"\n ],\n \"type\": \"string\"\n },\n \"scheduleSpreadPeriod\": {\n \"default\": \"PT6H\",\n \"description\": \"ScheduleSpreadPeriod is the time spacing between each of the repair schedules that is to be carried out. Must be\\na valid ISO-8601 duration string. The default is \\\"PT6H\\\" (6 hours).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"timeBeforeFirstSchedule\": {\n \"default\": \"PT5M\",\n \"description\": \"TimeBeforeFirstSchedule is the grace period before the first repair in the schedule is started. Must be a valid\\nISO-8601 duration string. The default is \\\"PT5M\\\" (5 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Reaper will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Reaper instance, so that it can authenticate against nodes in the datacenter using CQL. If CQL\\nauthentication is not required, leave this field empty. The secret must be in the same namespace as Reaper itself\\nand must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"containerImage\": {\n \"default\": {\n \"name\": \"cassandra-reaper\",\n \"repository\": \"thelastpickle\",\n \"tag\": \"3.6.1\"\n },\n \"description\": \"The image to use for the Reaper pod main container.\\nThe default is \\\"thelastpickle/cassandra-reaper:3.6.1\\\".\\nTODO: update with real release version.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"datacenterAvailability\": {\n \"default\": \"ALL\",\n \"description\": \"DatacenterAvailability indicates to Reaper its deployment in relation to the target datacenter's network.\\nFor single-DC clusters, the default (ALL) is fine. For multi-DC clusters, it is recommended to use EACH,\\nprovided that there is one Reaper instance managing each DC in the cluster; otherwise, if one single Reaper\\ninstance is going to manage more than one DC in the cluster, use ALL.\\nSee https://cassandra-reaper.io/docs/usage/multi_dc/.\",\n \"enum\": [\n \"LOCAL\",\n \"ALL\",\n \"EACH\"\n ],\n \"type\": \"string\"\n },\n \"datacenterRef\": {\n \"description\": \"DatacenterRef is the reference of a CassandraDatacenter resource that this Reaper instance should manage. It will\\nalso be used as the backend for persisting Reaper's state. Reaper must be able to access the JMX port (7199 by\\ndefault) and the CQL port (9042 by default) on this DC.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The datacenter name.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"The datacenter namespace. If empty, the datacenter will be assumed to reside in the same namespace as the Reaper\\ninstance.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"2Gi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Reaper.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"httpManagement\": {\n \"default\": {\n \"enabled\": false\n },\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enable/disable the HTTP management connection between Reaper and Cassandra.\\nWhen enabled, HTTP will be used instead of JMX for management connectivity between Cassandra\\nand Reaper. In future, this will be true by default\",\n \"type\": \"boolean\"\n },\n \"keystores\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerImage\": {\n \"description\": \"Deprecated: The main container image will be used for the init container as well.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"Init Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerSecurityContext\": {\n \"description\": \"InitContainerSecurityContext is the SecurityContext applied to the Reaper init container, used to perform schema\\nmigrations.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jmxUserSecretRef\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. Reaper will use cassandraUsefSecretRef for authentication,\\nthis field is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keyspace\": {\n \"default\": \"reaper_db\",\n \"description\": \"The keyspace to use to store Reaper's state. Will default to \\\"reaper_db\\\" if unspecified. Will be created if it\\ndoes not exist, and if this Reaper resource is managed by K8ssandra.\",\n \"type\": \"string\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Reaper liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Reaper resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext contains a pod-level SecurityContext to apply to Reaper pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Reaper readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Main Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Reaper main container.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"skipSchemaMigration\": {\n \"default\": false,\n \"description\": \"Whether to skip schema migration. Schema migration is done in an init container on every Reaper deployment and\\ncan slow down Reaper's startup time. Besides, schema migration requires reading data at QUORUM. It can be skipped\\nif you know that the schema is already up-to-date, or if you know upfront that QUORUM cannot be achieved (for\\nexample, because a DC is down).\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"If StorageType is \\\"local\\\", Reaper will need a Persistent Volume to persist its data. This field allows\\nconfiguring that Persistent Volume.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageType\": {\n \"default\": \"cassandra\",\n \"description\": \"The storage backend to store Reaper's data. Defaults to \\\"cassandra\\\" which causes Reaper to be stateless and store\\nits state to a Cassandra cluster it repairs (implying there must be one Reaper for each Cassandra cluster).\\nThe \\\"local\\\" option makes Reaper to store its state locally, allowing a single Reaper to repair several clusters.\",\n \"enum\": [\n \"cassandra\",\n \"local\"\n ],\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Reaper pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Reaper pods.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uiUserSecretRef\": {\n \"description\": \"Defines the secret which contains the username and password for the Reaper UI and REST API authentication. When UiUserSecretRef.Name == \\\"\\\", authentication is turned off in the front-end only.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Reaper\",\n \"type\": \"object\"\n}", + "version": "reaper.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Reaper", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json new file mode 100644 index 00000000000..9f1f875faf6 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ReplicatedSecret", + "schema": "{\n \"description\": \"ReplicatedSecret is the Schema for the replicatedsecrets API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ReplicatedSecretSpec defines the desired state of ReplicatedSecret\",\n \"properties\": {\n \"replicationTargets\": {\n \"description\": \"TargetContexts indicates the target clusters to which the secrets are replicated to. If empty, no clusters are targeted\",\n \"items\": {\n \"properties\": {\n \"addLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AddLabels adds labels to the target secret.\",\n \"type\": \"object\"\n },\n \"dropLabels\": {\n \"description\": \"DropLabels defines the labels to be dropped from the secret before replication, this is sometimes neccessary to avoid infinite replication.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"k8sContextName\": {\n \"description\": \"K8sContextName defines the target cluster name as set in the ClientConfig. If left empty, current cluster is assumed\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"TODO Implement at some point\\nNamespace to replicate the data to in the target cluster. If left empty, current namespace is used.\",\n \"type\": \"string\"\n },\n \"targetPrefix\": {\n \"description\": \"TargetPrefix is the prefix to be used for the replicated secret in the target cluster. If left empty, the same name is used\\nas the original secret.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector defines which secrets are replicated. If left empty, all the secrets are replicated\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Replicated Secret\",\n \"type\": \"object\"\n}", + "version": "replication.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Replicated Secret", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json new file mode 100644 index 00000000000..62eb96d3cc6 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Stargate", + "schema": "{\n \"description\": \"Stargate is the Schema for the stargates API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Specification of the desired behavior of this Stargate resource.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"auth\": {\n \"default\": true,\n \"description\": \"Whether to enable authentication for Stargate. The default is true; it is highly recommended to always leave\\nauthentication turned on, not only on Stargate nodes, but also on data nodes as well. Note that Stargate REST\\nAPIs are currently only accessible if authentication is enabled, and if the authenticator in use in the whole\\ncluster is PasswordAuthenticator. The usage of any other authenticator will cause the REST API to become\\ninaccessible, see https://github.com/stargate/stargate/issues/792 for more. Stargate CQL API however remains\\naccessible even if authentication is disabled in the cluster, or when a custom authenticator is being used.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"cassandraEncryption\": {\n \"description\": \"CassandraEncryption groups together encryption stores that are passed to the Stargate pods, so\\nthat they can be mounted as volumes.\",\n \"properties\": {\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"serverEncryptionStores\": {\n \"description\": \"Internode encryption stores which are used by Cassandra and Stargate.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"datacenterRef\": {\n \"description\": \"DatacenterRef is the namespace-local reference of a CassandraDatacenter resource where\\nStargate should be deployed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks allow customizing Stargate characteristics for specific racks in the datacenter.\",\n \"items\": {\n \"description\": \"StargateRackTemplate defines custom rules for Stargate pods in a given rack.\\nThese rules will be merged with rules defined at datacenter level in a StargateDatacenterTemplate; rack-level rules\\nhave precedence over datacenter-level ones.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the rack name. It must correspond to an existing rack name in the CassandraDatacenter resource where\\nStargate is being deployed, otherwise it will be ignored.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"datacenterRef\",\n \"size\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Stargate\",\n \"type\": \"object\"\n}", + "version": "stargate.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Stargate", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 134.95 135.02\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#00d3a9}.cls-2{fill:#00b39f}\u003c/style\u003e\u003c/defs\u003e\u003ctitle\u003emeshery-logo-light\u003c/title\u003e\u003cpolygon points=\"69.49 31.82 69.49 64.07 97.44 47.89 69.49 31.82\" class=\"cls-1\"/\u003e\u003cpolygon points=\"69.49 70.81 69.49 103.22 97.7 87.09 69.49 70.81\" class=\"cls-1\"/\u003e\u003cpolygon points=\"65.47 63.85 65.47 32.09 37.87 47.92 65.47 63.85\" class=\"cls-2\"/\u003e\u003cpath d=\"M10.1,103.1a67.79,67.79,0,0,0,21.41,21.55V90.71Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"65.47 103.06 65.47 71.05 37.8 87.07 65.47 103.06\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 122.63 63.56 106.61 35.54 90.41 35.54 122.63\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 122.8 99.61 90.63 71.63 106.63 99.61 122.8\" class=\"cls-2\"/\u003e\u003cpath d=\"M127,99.37a67.22,67.22,0,0,0,7.91-28.94L105.78,87.11Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"103.64 83.69 131.76 67.61 103.64 51.45 103.64 83.69\" class=\"cls-1\"/\u003e\u003cpolygon points=\"99.61 44.5 99.61 12.52 71.76 28.49 99.61 44.5\" class=\"cls-2\"/\u003e\u003cpolygon points=\"99.61 83.55 99.61 51.28 71.7 67.44 99.61 83.55\" class=\"cls-2\"/\u003e\u003cpolygon points=\"67.48 135.02 67.49 135.02 67.48 135.02 67.48 135.02\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 51.22 35.54 83.73 63.66 67.45 35.54 51.22\" class=\"cls-1\"/\u003e\u003cpath d=\"M65.47,0A67.2,67.2,0,0,0,35.83,7.83l29.64,17Z\" class=\"cls-2\"/\u003e\u003cpolygon points=\"35.54 12.3 35.54 44.62 63.68 28.48 35.54 12.3\" class=\"cls-1\"/\u003e\u003cpath d=\"M31.51,10.34A67.89,67.89,0,0,0,10.1,31.89L31.51,44.25Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M99.43,8A67.23,67.23,0,0,0,69.49,0V25.15Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M0,69.87A67.27,67.27,0,0,0,8.07,99.63L29.76,87.07Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M8.07,35.37A67.16,67.16,0,0,0,0,65L29.79,47.91Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M35.78,127.13A67.13,67.13,0,0,0,65.47,135V110.15Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M124.92,32a67.9,67.9,0,0,0-21.28-21.52V44.3Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M103.64,124.54A68,68,0,0,0,125,102.86L103.64,90.52Z\" class=\"cls-1\"/\u003e\u003cpath d=\"M135,64.81a67.06,67.06,0,0,0-8-29.35L105.49,47.88Z\" class=\"cls-2\"/\u003e\u003cpath d=\"M69.49,135a67.12,67.12,0,0,0,29.63-7.83L69.49,110Z\" class=\"cls-1\"/\u003e\u003cpolygon points=\"31.51 83.44 31.51 51.56 3.83 67.43 31.51 83.44\" class=\"cls-2\"/\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/model.json b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/model.json new file mode 100644 index 00000000000..8870aeff606 --- /dev/null +++ b/server/meshmodel/k8ssandra-operator/1.20.0-20240903195858-60a99490/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json new file mode 100644 index 00000000000..84c45a606b6 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraDatacenter.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CassandraDatacenter", + "schema": "{\n \"description\": \"CassandraDatacenter is the Schema for the cassandradatacenters API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CassandraDatacenterSpec defines the desired state of a CassandraDatacenter\",\n \"format\": \"textarea\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Additional Annotations allows to define additional labels that will be included in all objects created by the operator. Note, user can override values set by default from the cass-operator and doing so could break cass-operator functionality.\",\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Additional Labels allows to define additional labels that will be included in all objects created by the operator. Note, user can override values set by default from the cass-operator and doing so could break cass-operator functionality.\",\n \"type\": \"object\"\n },\n \"additionalSeeds\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalServiceConfig\": {\n \"description\": \"AdditionalServiceConfig allows to define additional parameters that are included in the created Services. Note, user can override values set by cass-operator and doing so could break cass-operator functionality.\\nAvoid label \\\"cass-operator\\\" and anything that starts with \\\"cassandra.datastax.com/\\\"\",\n \"properties\": {\n \"additionalSeedService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allpodsService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"description\": \"ServiceConfigAdditions exposes additional options for each service\",\n \"properties\": {\n \"additionalAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"additionalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowMultipleNodesPerWorker\": {\n \"description\": \"Turning this option on allows multiple server pods to be created on a k8s worker node, by removing the default pod anti affinity rules.\\nBy default the operator creates just one server pod per k8s worker node. Using custom affinity rules might require turning this\\noption on in which case the defaults are not set.\",\n \"type\": \"boolean\"\n },\n \"canaryUpgrade\": {\n \"description\": \"Indicates that configuration and container image changes should only be pushed to\\nthe first rack of the datacenter\",\n \"type\": \"boolean\"\n },\n \"canaryUpgradeCount\": {\n \"description\": \"The number of nodes that will be updated when CanaryUpgrade is true. Note that the value is\\neither 0 or greater than the rack size, then all nodes in the rack will get updated.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"cdc\": {\n \"description\": \"CDC allows configuration of the change data capture agent which can run within the Management API container. Use it to send data to Pulsar.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"The name by which CQL clients and instances will know the cluster. If the same\\ncluster name is shared by multiple Datacenters in the same Kubernetes namespace,\\nthey will join together in a multi-datacenter cluster.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"configBuilderImage\": {\n \"description\": \"Container image for the config builder init container. Overrides value from ImageConfig ConfigBuilderImage\",\n \"type\": \"string\"\n },\n \"configBuilderResources\": {\n \"description\": \"Kubernetes resource requests and limits per server config initialization container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"configSecret\": {\n \"description\": \"ConfigSecret is the name of a secret that contains configuration for Cassandra. The\\nsecret is expected to have a property named config whose value should be a JSON\\nformatted string that should look like this:\\n\\n\\n config: |-\\n {\\n \\\"cassandra-yaml\\\": {\\n \\\"read_request_timeout_in_ms\\\": 10000\\n },\\n \\\"jmv-options\\\": {\\n \\\"max_heap_size\\\": 1024M\\n }\\n }\\n\\n\\nConfigSecret is mutually exclusive with Config. ConfigSecret takes precedence and\\nwill be used exclusively if both properties are set. The operator sets a watch such\\nthat an update to the secret will trigger an update of the StatefulSets.\",\n \"type\": \"string\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"disableSystemLoggerSidecar\": {\n \"description\": \"Configuration for disabling the simple log tailing sidecar container. Our default is to have it enabled.\",\n \"type\": \"boolean\"\n },\n \"dockerImageRunsAsCassandra\": {\n \"description\": \"DEPRECATED This setting does nothing and defaults to true. Use SecurityContext instead.\",\n \"type\": \"boolean\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"forceUpgradeRacks\": {\n \"description\": \"Rack names in this list are set to the latest StatefulSet configuration\\neven if Cassandra nodes are down. Use this to recover from an upgrade that couldn't\\nroll out.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"managementApiAuth\": {\n \"description\": \"Config for the Management API certificates\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds sets the minimum number of seconds for which a newly created pod should be ready without any of its containers crashing, for it to be considered available. Defaults to 5 seconds and is set in the StatefulSet spec.\\nSetting to 0 might cause multiple Cassandra pods to restart at the same time despite PodDisruptionBudget settings.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"networking\": {\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the Datacenter, using node affinity\",\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A map of label keys and values to restrict Cassandra node scheduling to k8s workers\\nwith matchiing labels.\\nMore info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"podTemplateSpec\": {\n \"description\": \"PodTemplate provides customisation options (labels, annotations, affinity rules, resource requests, and so on) for the cassandra pods\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the pod.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to\\nStartTime before the system will actively try to mark it failed and kill associated containers.\\nValue must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"description\": \"List of containers belonging to the pod.\\nContainers cannot currently be added or removed.\\nThere must be at least one container in a Pod.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod.\\nDefaults to \\\"ClusterFirst\\\".\\nValid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.\\nDNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy.\\nTo have DNS options set along with hostNetwork, you have to specify DNS policy\\nexplicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's\\nenvironment variables, matching the syntax of Docker links.\\nOptional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"description\": \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing\\npod to perform user-initiated actions such as debugging. This list cannot be specified when\\ncreating a pod, and it cannot be modified by updating the pod spec. In order to add an\\nephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.\",\n \"items\": {\n \"description\": \"An EphemeralContainer is a temporary container that you may add to an existing Pod for\\nuser-initiated activities such as debugging. Ephemeral containers have no resource or\\nscheduling guarantees, and they will not be restarted when they exit or when a Pod is\\nremoved or restarted. The kubelet may evict a Pod if an ephemeral container causes the\\nPod to exceed its resource allocation.\\n\\n\\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing\\nPod. Ephemeral containers may not be removed or restarted.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Lifecycle is not allowed for ephemeral containers.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the ephemeral container specified as a DNS_LABEL.\\nThis name must be unique among all containers, init containers and ephemeral containers.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"Ports are not allowed for ephemeral containers.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources\\nalready allocated to the pod.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for the container to manage the restart behavior of each\\ncontainer within a pod.\\nThis may only be set for init containers. You cannot set this field on\\nephemeral containers.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"Optional: SecurityContext defines the security options the ephemeral container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"description\": \"If set, the name of the container from PodSpec that this ephemeral container targets.\\nThe ephemeral container will be run in the namespaces (IPC, PID, etc) of this container.\\nIf not set then the ephemeral container uses the namespaces configured in the Pod spec.\\n\\n\\nThe container runtime must implement support for this feature. If the runtime does not\\nsupport namespace targeting then the result of setting this field is undefined.\",\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts\\nfile if specified. This is only valid for non-hostNetwork pods.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace.\\nIf this option is set, the ports that will be used must be specified.\\nDefault to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n \"description\": \"Use the host's user namespace.\\nOptional: Default to true.\\nIf set to true or not present, the pod will be run in the host user namespace, useful\\nfor when the pod needs a feature only available to the host user namespace, such as\\nloading a kernel module with CAP_SYS_MODULE.\\nWhen set to false, a new userns is created for the pod. Setting false is useful for\\nmitigating container breakout vulnerabilities even allowing users to run their\\ncontainers as root without actually having root privileges on the host.\\nThis field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Specifies the hostname of the Pod\\nIf not specified, the pod's hostname will be set to a system-defined value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec.\\nIf specified, these secrets will be passed to individual puller implementations for them to use.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"List of initialization containers belonging to the pod.\\nInit containers are executed in order prior to containers being started. If any\\ninit container fails, the pod is considered to have failed and is handled according\\nto its restartPolicy. The name for an init container or normal container must be\\nunique among all containers.\\nInit containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes.\\nThe resourceRequirements of an init container are taken into account during scheduling\\nby finding the highest request/limit for each resource type, and then using the max of\\nof that value or the sum of the normal containers. Limits are applied to init containers\\nin a similar fashion.\\nInit containers cannot currently be added or removed.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty,\\nthe scheduler simply schedules this pod onto that node, assuming that it fits resource\\nrequirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node.\\nSelector which must match a node's labels for the pod to be scheduled on that node.\\nMore info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod.\\nSome pod and container fields are restricted if this is set.\\n\\n\\nIf the OS field is set to linux, the following fields must be unset:\\n-securityContext.windowsOptions\\n\\n\\nIf the OS field is set to windows, following fields must be unset:\\n- spec.hostPID\\n- spec.hostIPC\\n- spec.hostUsers\\n- spec.securityContext.seLinuxOptions\\n- spec.securityContext.seccompProfile\\n- spec.securityContext.fsGroup\\n- spec.securityContext.fsGroupChangePolicy\\n- spec.securityContext.sysctls\\n- spec.shareProcessNamespace\\n- spec.securityContext.runAsUser\\n- spec.securityContext.runAsGroup\\n- spec.securityContext.supplementalGroups\\n- spec.containers[*].securityContext.seLinuxOptions\\n- spec.containers[*].securityContext.seccompProfile\\n- spec.containers[*].securityContext.capabilities\\n- spec.containers[*].securityContext.readOnlyRootFilesystem\\n- spec.containers[*].securityContext.privileged\\n- spec.containers[*].securityContext.allowPrivilegeEscalation\\n- spec.containers[*].securityContext.procMount\\n- spec.containers[*].securityContext.runAsUser\\n- spec.containers[*].securityContext.runAsGroup\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows.\\nAdditional value may be defined in future and can be one of:\\nhttps://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration\\nClients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass.\\nThis field will be autopopulated at admission time by the RuntimeClass admission controller. If\\nthe RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests.\\nThe RuntimeClass admission controller will reject Pod create requests which have the overhead already\\nset. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value\\ndefined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero.\\nMore info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority.\\nOne of Never, PreemptLowerPriority.\\nDefaults to PreemptLowerPriority if unset.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the\\npriority of the pod. When Priority Admission Controller is enabled, it\\nprevents users from setting this field. The admission controller populates\\nthis field from PriorityClassName.\\nThe higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and\\n\\\"system-cluster-critical\\\" are two special keywords which indicate the\\nhighest priorities with the former being the highest priority. Any other\\nname must be defined by creating a PriorityClass object with that name.\\nIf not specified, the pod priority will be default or zero if there is no\\ndefault.\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"If specified, all readiness gates will be evaluated for pod readiness.\\nA pod is ready when all its containers are ready AND\\nall conditions specified in the readiness gates have status equal to \\\"True\\\"\\nMore info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resourceClaims\": {\n \"description\": \"ResourceClaims defines which ResourceClaims must be allocated\\nand reserved before the Pod is allowed to start. The resources\\nwill be made available to those containers which consume them\\nby name.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable.\",\n \"items\": {\n \"description\": \"PodResourceClaim references exactly one ResourceClaim through a ClaimSource.\\nIt adds a name to it that uniquely identifies the ResourceClaim inside the Pod.\\nContainers that need access to the ResourceClaim reference it with this name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name uniquely identifies this resource claim inside the pod.\\nThis must be a DNS_LABEL.\",\n \"type\": \"string\"\n },\n \"source\": {\n \"description\": \"Source describes where to find the ResourceClaim.\",\n \"properties\": {\n \"resourceClaimName\": {\n \"description\": \"ResourceClaimName is the name of a ResourceClaim object in the same\\nnamespace as this pod.\",\n \"type\": \"string\"\n },\n \"resourceClaimTemplateName\": {\n \"description\": \"ResourceClaimTemplateName is the name of a ResourceClaimTemplate\\nobject in the same namespace as this pod.\\n\\n\\nThe template will be used to create a new ResourceClaim, which will\\nbe bound to this pod. When this pod is deleted, the ResourceClaim\\nwill also be deleted. The pod name and resource name, along with a\\ngenerated component, will be used to form a unique name for the\\nResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\\n\\n\\nThis field is immutable and no changes will be made to the\\ncorresponding ResourceClaim by the control plane after creating the\\nResourceClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for all containers within the pod.\\nOne of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted.\\nDefault to Always.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used\\nto run this pod. If no RuntimeClass resource matches the named class, the pod will not be run.\\nIf unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an\\nempty definition that uses the default runtime handler.\\nMore info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler.\\nIf not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"schedulingGates\": {\n \"description\": \"SchedulingGates is an opaque list of values that if specified will block scheduling the pod.\\nIf schedulingGates is not empty, the pod will stay in the SchedulingGated state and the\\nscheduler will not attempt to schedule the pod.\\n\\n\\nSchedulingGates can only be set at pod creation time, and be removed only afterwards.\\n\\n\\nThis is a beta feature enabled by the PodSchedulingReadiness feature gate.\",\n \"items\": {\n \"description\": \"PodSchedulingGate is associated to a Pod to guard its scheduling.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the scheduling gate.\\nEach scheduling gate must have a unique name field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nOptional: Defaults to empty. See type description for default values of each field.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.\\nDeprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).\\nIn Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).\\nIn Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN.\\nIf a pod does not have FQDN, this has no effect.\\nDefault to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod.\\nWhen this is set containers will be able to view and signal processes from other containers\\nin the same pod, and the first process in each container will not be assigned PID 1.\\nHostPID and ShareProcessNamespace cannot both be set.\\nOptional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"description\": \"If specified, the fully qualified Pod hostname will be \\\"\\u003chostname\\u003e.\\u003csubdomain\\u003e.\\u003cpod namespace\\u003e.svc.\\u003ccluster domain\\u003e\\\".\\nIf not specified, the pod will not have a domainname at all.\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nIf this value is nil, the default grace period will be used instead.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nDefaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology\\ndomains. Scheduler will schedule pods in a way which abides by the constraints.\\nAll topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods.\\nPods that match this label selector are counted to determine the number of pods\\nin their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select the pods over which\\nspreading will be calculated. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are ANDed with labelSelector\\nto select the group of existing pods over which spreading will be calculated\\nfor the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nMatchLabelKeys cannot be set when LabelSelector isn't set.\\nKeys that don't exist in the incoming pod labels will\\nbe ignored. A null or empty list means only match against labelSelector.\\n\\n\\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed.\\nWhen `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference\\nbetween the number of matching pods in the target topology and the global minimum.\\nThe global minimum is the minimum number of matching pods in an eligible domain\\nor zero if the number of eligible domains is less than MinDomains.\\nFor example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same\\nlabelSelector spread as 2/2/1:\\nIn this case, the global minimum is 1.\\n| zone1 | zone2 | zone3 |\\n| P P | P P | P |\\n- if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2;\\nscheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2)\\nviolate MaxSkew(1).\\n- if MaxSkew is 2, incoming pod can be scheduled onto any zone.\\nWhen `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence\\nto topologies that satisfy it.\\nIt's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"description\": \"MinDomains indicates a minimum number of eligible domains.\\nWhen the number of eligible domains with matching topology keys is less than minDomains,\\nPod Topology Spread treats \\\"global minimum\\\" as 0, and then the calculation of Skew is performed.\\nAnd when the number of eligible domains with matching topology keys equals or greater than minDomains,\\nthis value has no effect on scheduling.\\nAs a result, when the number of eligible domains is less than minDomains,\\nscheduler won't schedule more than maxSkew Pods to those domains.\\nIf value is nil, the constraint behaves as if MinDomains is equal to 1.\\nValid values are integers greater than 0.\\nWhen value is not nil, WhenUnsatisfiable must be DoNotSchedule.\\n\\n\\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same\\nlabelSelector spread as 2/2/2:\\n| zone1 | zone2 | zone3 |\\n| P P | P P | P P |\\nThe number of domains is less than 5(MinDomains), so \\\"global minimum\\\" is treated as 0.\\nIn this situation, new pod with the same labelSelector cannot be scheduled,\\nbecause computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones,\\nit will violate MaxSkew.\\n\\n\\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"description\": \"NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector\\nwhen calculating pod topology spread skew. Options are:\\n- Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations.\\n- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\\n\\n\\nIf this value is nil, the behavior is equivalent to the Honor policy.\\nThis is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"description\": \"NodeTaintsPolicy indicates how we will treat node taints when calculating\\npod topology spread skew. Options are:\\n- Honor: nodes without taints, along with tainted nodes for which the incoming pod\\nhas a toleration, are included.\\n- Ignore: node taints are ignored. All nodes are included.\\n\\n\\nIf this value is nil, the behavior is equivalent to the Ignore policy.\\nThis is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key\\nand identical values are considered to be in the same topology.\\nWe consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number\\nof pods into each bucket.\\nWe define a domain as a particular instance of a topology.\\nAlso, we define an eligible domain as a domain whose nodes meet the requirements of\\nnodeAffinityPolicy and nodeTaintsPolicy.\\ne.g. If TopologyKey is \\\"kubernetes.io/hostname\\\", each Node is a domain of that topology.\\nAnd, if TopologyKey is \\\"topology.kubernetes.io/zone\\\", each zone is a domain of that topology.\\nIt's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy\\nthe spread constraint.\\n- DoNotSchedule (default) tells the scheduler not to schedule it.\\n- ScheduleAnyway tells the scheduler to schedule the pod in any location,\\n but giving higher precedence to topologies that would help reduce the\\n skew.\\nA constraint is considered \\\"Unsatisfiable\\\" for an incoming pod\\nif and only if every possible node assignment for that pod would violate\\n\\\"MaxSkew\\\" on some topology.\\nFor example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same\\nlabelSelector spread as 3/1/1:\\n| zone1 | zone2 | zone3 |\\n| P P P | P | P |\\nIf WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled\\nto zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies\\nMaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler\\nwon't make it *more* imbalanced.\\nIt's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"List of volumes that can be mounted by containers belonging to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"A list of the named racks in the datacenter, representing independent failure domains. The\\nnumber of racks should match the replication factor in the keyspaces you plan to create, and\\nthe number of racks cannot easily be changed once a datacenter is deployed.\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"ReadOnlyRootFilesystem makes the cassandra container to be run with a read-only root filesystem. Currently only functional when used with the\\nnew k8ssandra-client config builder (Cassandra 4.1 and newer and HCD)\",\n \"type\": \"boolean\"\n },\n \"replaceNodes\": {\n \"description\": \"Deprecated Use CassandraTask replacenode to achieve correct node replacement. A list of pod names that need to be replaced.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Kubernetes resource requests and limits, per pod\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"rollingRestartRequested\": {\n \"description\": \"Deprecated. Use CassandraTask for rolling restarts. Whether to do a rolling restart at the next opportunity. The operator will set this back\\nto false once the restart is in progress.\",\n \"type\": \"boolean\"\n },\n \"serverImage\": {\n \"description\": \"Cassandra server image name. Use of ImageConfig to match ServerVersion is recommended instead of this value.\\nThis value will override anything set in the ImageConfig matching the ServerVersion\\nMore info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"serverType\": {\n \"description\": \"Server type: \\\"cassandra\\\", \\\"dse\\\" or \\\"hcd\\\"\",\n \"enum\": [\n \"cassandra\",\n \"dse\",\n \"hcd\"\n ],\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"Version string for config builder,\\nused to generate Cassandra server configuration\",\n \"pattern\": \"(6\\\\.[89]\\\\.\\\\d+)|(3\\\\.11\\\\.\\\\d+)|(4\\\\.\\\\d+\\\\.\\\\d+)|(5\\\\.\\\\d+\\\\.\\\\d+)|(1\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"Deprecated DeprecatedServiceAccount Use ServiceAccountName instead, which takes precedence. The k8s service account to use for the server pods\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the Kubernetes service account to use for the server pods. This takes presedence over DeprecatedServiceAccount and both take precedence over\\nsetting it in the PodTemplateSpec.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"description\": \"Desired number of Cassandra server nodes\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"stopped\": {\n \"description\": \"A stopped CassandraDatacenter will have no running server pods, like using \\\"stop\\\" with\\ntraditional System V init scripts. Other Kubernetes resources will be left intact, and volumes\\nwill re-attach when the CassandraDatacenter workload is resumed.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig describes the persistent storage request of each server node\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"finalizers\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"superuserSecretName\": {\n \"description\": \"This secret defines the username and password for the Cassandra server superuser.\\nIf it is omitted, we will generate a secret instead.\",\n \"type\": \"string\"\n },\n \"systemLoggerImage\": {\n \"description\": \"Container image for the log tailing sidecar container. Overrides value from ImageConfig SystemLoggerImage\",\n \"type\": \"string\"\n },\n \"systemLoggerResources\": {\n \"description\": \"Kubernetes resource requests and limits per system logger container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Cassandra pod. Note that these cannot be overridden with PodTemplateSpec.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"users\": {\n \"description\": \"Cassandra users to bootstrap\",\n \"items\": {\n \"properties\": {\n \"secretName\": {\n \"type\": \"string\"\n },\n \"superuser\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"secretName\",\n \"superuser\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"clusterName\",\n \"serverType\",\n \"serverVersion\",\n \"size\",\n \"storageConfig\"\n ],\n \"type\": \"string\"\n }\n },\n \"title\": \"Cassandra Datacenter\",\n \"type\": \"object\"\n}", + "version": "cassandra.datastax.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "Cassandra Datacenter", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json new file mode 100644 index 00000000000..61bf0323cec --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/CassandraTask.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CassandraTask", + "schema": "{\n \"description\": \"CassandraTask is the Schema for the cassandrajobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"CassandraTaskSpec defines the desired state of CassandraTask\",\n \"properties\": {\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this task can be run concurrently with other active tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"datacenter\": {\n \"description\": \"Which datacenter this task is targetting. Note, this must be a datacenter which the current cass-operator\\ncan access\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"jobs\": {\n \"description\": \"Jobs defines the jobs this task will execute (and their order)\",\n \"items\": {\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments are additional parameters for the command\",\n \"properties\": {\n \"end_token\": {\n \"type\": \"string\"\n },\n \"jobs\": {\n \"type\": \"integer\"\n },\n \"keyspace_name\": {\n \"type\": \"string\"\n },\n \"new_tokens\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NewTokens is a map of pod names to their newly-assigned tokens. Required for the move\\ncommand, ignored otherwise. Pods referenced in this map must exist; any existing pod not\\nreferenced in this map will not be moved.\",\n \"type\": \"object\"\n },\n \"no_snapshot\": {\n \"type\": \"boolean\"\n },\n \"no_validate\": {\n \"description\": \"Scrub arguments\",\n \"type\": \"boolean\"\n },\n \"pod_name\": {\n \"type\": \"string\"\n },\n \"rack\": {\n \"type\": \"string\"\n },\n \"skip_corrupted\": {\n \"type\": \"boolean\"\n },\n \"source_datacenter\": {\n \"type\": \"string\"\n },\n \"split_output\": {\n \"description\": \"Compaction arguments\",\n \"type\": \"boolean\"\n },\n \"start_token\": {\n \"type\": \"string\"\n },\n \"tables\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"command\": {\n \"description\": \"Command defines what is run against Cassandra pods\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"command\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy indicates the behavior n case of failure. Default is Never.\",\n \"type\": \"string\"\n },\n \"scheduledTime\": {\n \"description\": \"ScheduledTime indicates the earliest possible time this task is executed. This does not necessarily\\nequal to the time it is actually executed (if other tasks are blocking for example). If not set,\\nthe task will be executed immediately.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"TTLSecondsAfterFinished defines how long the completed job will kept before being cleaned up. If set to 0\\nthe task will not be cleaned up by the cass-operator. If unset, the default time (86400s) is used.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Cassandra Task\",\n \"type\": \"object\"\n}", + "version": "control.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cassandra Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json new file mode 100644 index 00000000000..73fec0d7c82 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ClientConfig.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ClientConfig", + "schema": "{\n \"description\": \"ClientConfig is the Schema for the kubeconfigs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ClientConfigSpec defines the desired state of KubeConfig\",\n \"properties\": {\n \"contextName\": {\n \"description\": \"ContextName allows to override the object name for context-name. If not set, the ClientConfig.Name is used as context name\",\n \"type\": \"string\"\n },\n \"kubeConfigSecret\": {\n \"description\": \"KubeConfigSecret should reference an existing secret; the actual configuration will be read from\\nthis secret's \\\"kubeconfig\\\" key.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Client Config\",\n \"type\": \"object\"\n}", + "version": "config.k8ssandra.io/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "Client Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json new file mode 100644 index 00000000000..194d2e29966 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraCluster.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "K8ssandraCluster", + "schema": "{\n \"description\": \"K8ssandraCluster is the Schema for the k8ssandraclusters API. The K8ssandraCluster CRD name is also the name of the\\nCassandra cluster (which corresponds to cluster_name in cassandra.yaml).\",\n \"properties\": {\n \"spec\": {\n \"description\": \"K8ssandraClusterSpec defines the desired state of K8ssandraCluster\",\n \"properties\": {\n \"auth\": {\n \"default\": true,\n \"description\": \"Whether to enable authentication in this cluster. The default is true; it is highly recommended to always leave\\nauthentication turned on. When enabled, authentication will be enforced not only on Cassandra nodes, but also on\\nReaper, Medusa and Stargate nodes, if any.\",\n \"type\": \"boolean\"\n },\n \"cassandra\": {\n \"description\": \"Cassandra is a specification of the Cassandra cluster. This includes everything from\\nthe number of datacenters, the k8s cluster where each DC should be deployed, node\\naffinity (via racks), individual C* node settings, JVM settings, and more.\",\n \"properties\": {\n \"additionalSeeds\": {\n \"description\": \"AdditionalSeeds specifies Cassandra node IPs for an existing datacenter. This is\\nprimarily intended for migrations from an existing Cassandra cluster that is not\\nmanaged by k8ssandra-operator. Note that this property should NOT be used to set\\nseeds for a DC that is or will be managed by k8ssandra-operator. k8ssandra-operator\\nalready manages seeds for DCs that it manages. If you have DNS set up such that you\\ncan resolve hostnames for the remote Cassandra cluster, then you can specify hostnames\\nhere; otherwise, use IP addresses.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cdc\": {\n \"description\": \"CDC defines the desired state for CDC integrations. It can be used to feed mutation events from Cassandra into an Apache Pulsar cluster,\\nfrom where they can be expored to external systems.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"clusterName\": {\n \"description\": \"Override the Cassandra cluster name. If unspecified, the cluster name will be the same as the K8ssandraCluster\\nCRD name.\",\n \"type\": \"string\"\n },\n \"config\": {\n \"description\": \"CassandraConfig contains configuration settings that are applied to cassandra.yaml, dse.yaml\\nand the various jvm*.options files.\",\n \"properties\": {\n \"cassandraYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"dseYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"jvmOptions\": {\n \"properties\": {\n \"additionalJvm11ServerOptions\": {\n \"description\": \"Jvm11ServerOptions are additional options that will be passed on to the jvm11-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvm8ServerOptions\": {\n \"description\": \"Jvm8ServerOptions are additional options that will be passed on to the jvm8-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvmServerOptions\": {\n \"description\": \"JvmServerOptions are additional options that will be passed on to the jvm-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalOptions\": {\n \"description\": \"Additional, arbitrary JVM options which are written into the cassandra-env.sh file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cassandra_available_processors\": {\n \"description\": \"Available CPU processors.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.available_processors.\",\n \"type\": \"integer\"\n },\n \"cassandra_disable_auth_caches_remote_configuration\": {\n \"description\": \"Disable remote configuration via JMX of auth caches.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.disable_auth_caches_remote_configuration.\",\n \"type\": \"boolean\"\n },\n \"cassandra_expiration_date_overflow_policy\": {\n \"description\": \"Defines how to handle INSERT requests with TTL exceeding the maximum supported expiration\\ndate.\\nPossible values include `REJECT`, `CAP`, `CAP_NOWARN`.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.expiration_date_overflow_policy.\",\n \"type\": \"string\"\n },\n \"cassandra_force_3_0_protocol_version\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Dcassandra.force_3_0_protocol_version=true.\",\n \"type\": \"boolean\"\n },\n \"cassandra_force_default_indexing_page_size\": {\n \"description\": \"Disable dynamic calculation of the page size used when indexing an entire partition (during\\ninitial index build/rebuild).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.force_default_indexing_page_size.\",\n \"type\": \"boolean\"\n },\n \"cassandra_max_hint_ttl_seconds\": {\n \"description\": \"Imposes an upper bound on hint lifetime below the normal min gc_grace_seconds.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.maxHintTTL.\",\n \"type\": \"integer\"\n },\n \"cassandra_metrics_reporter_config_file\": {\n \"description\": \"Enable pluggable metrics reporter.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.metricsReporterConfigFile.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_ring_delay_ms\": {\n \"description\": \"Amount of time in milliseconds that a node waits before joining the ring.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.ring_delay_ms.\",\n \"type\": \"integer\"\n },\n \"cassandra_triggers_directory\": {\n \"description\": \"Default location for the trigger JARs.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.triggers_dir.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_write_survey\": {\n \"description\": \"For testing new compaction and compression strategies.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.write_survey.\",\n \"type\": \"boolean\"\n },\n \"debug_disable_contended_annotations\": {\n \"description\": \"Disable honoring user code @Contended annotations.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-RestrictContended.\",\n \"type\": \"boolean\"\n },\n \"debug_enable_flight_recorder\": {\n \"description\": \"Enable Flight Recorder (Use in production is subject to Oracle licensing).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+FlightRecorder.\",\n \"type\": \"boolean\"\n },\n \"debug_listen_remote_debuggers\": {\n \"description\": \"Listen for JVM remote debuggers on port 1414.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414\\\".\",\n \"type\": \"boolean\"\n },\n \"debug_log_compilation\": {\n \"description\": \"Make Cassandra JVM log internal method compilation (developers only).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+LogCompilation.\",\n \"type\": \"boolean\"\n },\n \"debug_non_safepoints\": {\n \"description\": \"Whether the compiler should generate the necessary metadata for the parts of the code not at\\nsafe points as well. For use with Flight Recorder.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+DebugNonSafepoints.\",\n \"type\": \"boolean\"\n },\n \"debug_preserve_frame_pointer\": {\n \"description\": \"Preserve Frame Pointer.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PreserveFramePointer.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_commercial_features\": {\n \"description\": \"Unlock commercial features.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockCommercialFeatures.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_diagnostic_vm_options\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockDiagnosticVMOptions.\",\n \"type\": \"boolean\"\n },\n \"gc\": {\n \"default\": \"G1GC\",\n \"description\": \"The name of the garbage collector to use. Depending on the Cassandra version, not all values\\nare supported: Cassandra 3.11 supports only G1GC and CMS; Cassandra 4.0 supports G1GC, ZGC,\\nShenandoah and Graal. This option will unlock the corresponding garbage collector with a\\ndefault configuration; to further tune the GC settings, use the additional JVM options field.\\nUse the special value Custom if you intend to use non-standard garbage collectors.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\",\n \"enum\": [\n \"G1GC\",\n \"CMS\",\n \"ZGC\",\n \"Shenandoah\",\n \"Graal\",\n \"Custom\"\n ],\n \"type\": \"string\"\n },\n \"gc_cms_heap_size_young_generation\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xmn.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_cms_initiating_occupancy_fraction\": {\n \"description\": \"Defaults to 75. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSInitiatingOccupancyFraction.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_cms_max_tenuring_threshold\": {\n \"description\": \"Defaults to 1. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:MaxTenuringThreshold.\",\n \"type\": \"integer\"\n },\n \"gc_cms_survivor_ratio\": {\n \"description\": \"Defaults to 8. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:SurvivorRatio.\",\n \"type\": \"integer\"\n },\n \"gc_cms_wait_duration_ms\": {\n \"description\": \"Defaults to 10000. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSWaitDuration.\",\n \"type\": \"integer\"\n },\n \"gc_g1_conc_threads\": {\n \"description\": \"Concurrent GC Threads. Can only be used when G1 garbage collector is used.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ConcGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_initiating_heap_occupancy_percent\": {\n \"description\": \"Initiating Heap Occupancy Percentage. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:InitiatingHeapOccupancyPercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_g1_max_gc_pause_ms\": {\n \"description\": \"G1GC Max GC Pause in milliseconds. Defaults to 500. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:MaxGCPauseMillis.\",\n \"type\": \"integer\"\n },\n \"gc_g1_parallel_threads\": {\n \"description\": \"Parallel GC Threads. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ParallelGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_rset_updating_pause_time_percent\": {\n \"description\": \"G1GC Updating Pause Time Percentage. Defaults to 5. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:G1RSetUpdatingPauseTimePercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_print_application_stopped_time\": {\n \"description\": \"Print GC Application Stopped Time.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCApplicationStoppedTime.\",\n \"type\": \"boolean\"\n },\n \"gc_print_date_stamps\": {\n \"description\": \"Print GC Date Stamps. Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDateStamps.\",\n \"type\": \"boolean\"\n },\n \"gc_print_details\": {\n \"description\": \"Print GC details.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDetails.\",\n \"type\": \"boolean\"\n },\n \"gc_print_flss_statistics\": {\n \"description\": \"Print FLSS Statistics.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:PrintFLSStatistics=1.\",\n \"type\": \"boolean\"\n },\n \"gc_print_heap\": {\n \"description\": \"Print Heap at GC.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintHeapAtGC.\",\n \"type\": \"boolean\"\n },\n \"gc_print_log_file_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size of each log file.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:GCLogFileSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_print_number_of_log_files\": {\n \"description\": \"Number of GC log files.\\nDisabled by default. Can only be used when the G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:NumberOfGCLogFiles.\",\n \"type\": \"integer\"\n },\n \"gc_print_promotion_failure\": {\n \"description\": \"Print promotion failure.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintPromotionFailure.\",\n \"type\": \"boolean\"\n },\n \"gc_print_tenuring_distribution\": {\n \"description\": \"Print tenuring distribution.\\nDefaults to false.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintTenuringDistribution.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file\": {\n \"description\": \"Whether to print GC logs to /var/log/cassandra/gc.log.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xloggc:/var/log/cassandra/gc.log.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file_rotation\": {\n \"description\": \"Use GC Log File Rotation.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+UseGCLogFileRotation.\",\n \"type\": \"boolean\"\n },\n \"heapNewGenSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use gc_cms_heap_size_young_generation instead.\\nValid for CMS garbage collector only + Cassandra 3.11.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use heap_initial_size and heap_max_size instead. If this field is defined,\\nit applies to both max_heap_size and initial_heap_size.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_initial_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xms.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_max_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xmx.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"jdk_allow_attach_self\": {\n \"description\": \"Allow the current VM to attach to itself.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Djdk.attach.allowAttachSelf=true.\",\n \"type\": \"boolean\"\n },\n \"jmx_connection_type\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nPossible values for 3.11 include `local-no-auth`, `remote-no-auth`, and `remote-dse-unified-auth`. Defaults to `local-no-auth`.\\nPossible values for 4.0 include `local-no-auth`, `remote-no-auth`. Defaults to `local-no-auth`.\",\n \"type\": \"string\"\n },\n \"jmx_port\": {\n \"description\": \"Disabled by default. Defaults to 7199.\\nTODO Make Reaper aware of the JMX port if a non-default port is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"integer\"\n },\n \"jmx_remote_ssl\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nDefaults to false.\\nValid only when JmxConnectionType is \\\"remote-no-auth\\\", \\\"remote-dse-unified-auth\\\".\",\n \"type\": \"boolean\"\n },\n \"jmx_remote_ssl_opts\": {\n \"description\": \"Remote SSL options.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"string\"\n },\n \"jmx_remote_ssl_require_client_auth\": {\n \"description\": \"Require Client Authentication for remote SSL? Defaults to false.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"boolean\"\n },\n \"netty_eventloop_maxpendingtasks\": {\n \"description\": \"Defaults to 65536.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dio.netty.eventLoop.maxPendingTasks.\",\n \"type\": \"integer\"\n },\n \"netty_try_reflection_set_accessible\": {\n \"description\": \"Netty setting `io.netty.tryReflectionSetAccessible`.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Dio.netty.tryReflectionSetAccessible=true.\",\n \"type\": \"boolean\"\n },\n \"nio_align_direct_memory\": {\n \"description\": \"Align direct memory allocations on page boundaries.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dsun.nio.PageAlignDirectMemory=true.\",\n \"type\": \"boolean\"\n },\n \"nio_maxcachedbuffersize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Defaults to 1048576.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djdk.nio.maxCachedBufferSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_always_pre_touch\": {\n \"description\": \"Ensure all memory is faulted and zeroed on startup.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+AlwaysPreTouch.\",\n \"type\": \"boolean\"\n },\n \"vm_crash_on_out_of_memory_error\": {\n \"description\": \"Disabled by default. Requires `exit_on_out_of_memory_error` to be disabled..\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+CrashOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_biased_locking\": {\n \"description\": \"Disable biased locking to avoid biased lock revocation pauses.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-UseBiasedLocking.\\nNote: the Cass Config Builder option is named use_biased_locking, but setting it to true\\ndisables biased locking.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_perf_shared_mem\": {\n \"description\": \"Disable hsperfdata mmap'ed file.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PerfDisableSharedMem.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_assertions\": {\n \"description\": \"Enable assertions.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -ea.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_non_root_thread_priority\": {\n \"description\": \"Enable lowering thread priority without being root on linux.\\nSee CASSANDRA-1181 for details.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:ThreadPriorityPolicy=42.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_thread_priorities\": {\n \"description\": \"Enable thread priorities.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseThreadPriorities.\",\n \"type\": \"boolean\"\n },\n \"vm_exit_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ExitOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_guaranteed_safepoint_interval_ms\": {\n \"description\": \"Defaults to 300000 milliseconds.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:GuaranteedSafepointInterval.\",\n \"type\": \"integer\"\n },\n \"vm_heap_dump_on_out_of_memory_error\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+HeapDumpOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_per_thread_stack_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Per-thread stack size.\\nDefaults to 256Ki.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xss.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_prefer_ipv4\": {\n \"description\": \"Prefer binding to IPv4 network interfaces.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djava.net.preferIPv4Stack=true.\",\n \"type\": \"boolean\"\n },\n \"vm_print_heap_histogram_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.printHeapHistogramOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_resize_tlab\": {\n \"description\": \"Allow resizing of thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ResizeTLAB.\",\n \"type\": \"boolean\"\n },\n \"vm_string_table_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The size of interned string table. Larger sizes are beneficial to gossip.\\nDefaults to 1000003.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:StringTableSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_use_numa\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseNUMA.\",\n \"type\": \"boolean\"\n },\n \"vm_use_tlab\": {\n \"description\": \"Enable thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseTLAB.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers defines containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own containers, which can be referenced here to override specific settings,\\nsuch as mounts or resources request/limits for example.\\nExample:\\n containers:\\n - name: server-system-logger\\n - name: custom-container\\n image: busybox\\n - name: cassandra\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"datacenters\": {\n \"description\": \"Datacenters a list of the DCs in the cluster.\",\n \"items\": {\n \"properties\": {\n \"cdc\": {\n \"description\": \"CDC defines the desired state for CDC integrations. It can be used to feed mutation events from Cassandra into an Apache Pulsar cluster,\\nfrom where they can be expored to external systems.\",\n \"properties\": {\n \"cdcConcurrentProcessors\": {\n \"type\": \"integer\"\n },\n \"cdcPollIntervalM\": {\n \"type\": \"integer\"\n },\n \"cdcWorkingDir\": {\n \"type\": \"string\"\n },\n \"errorCommitLogReprocessEnabled\": {\n \"type\": \"boolean\"\n },\n \"pulsarAuthParams\": {\n \"type\": \"string\"\n },\n \"pulsarAuthPluginClassName\": {\n \"type\": \"string\"\n },\n \"pulsarBatchDelayInMs\": {\n \"type\": \"integer\"\n },\n \"pulsarKeyBasedBatcher\": {\n \"type\": \"boolean\"\n },\n \"pulsarMaxPendingMessages\": {\n \"type\": \"integer\"\n },\n \"pulsarMaxPendingMessagesAcrossPartitions\": {\n \"type\": \"integer\"\n },\n \"pulsarServiceUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"sslAllowInsecureConnection\": {\n \"type\": \"string\"\n },\n \"sslCipherSuites\": {\n \"type\": \"string\"\n },\n \"sslEnabledProtocols\": {\n \"type\": \"string\"\n },\n \"sslHostnameVerificationEnable\": {\n \"type\": \"string\"\n },\n \"sslKeystorePassword\": {\n \"type\": \"string\"\n },\n \"sslKeystorePath\": {\n \"type\": \"string\"\n },\n \"sslProvider\": {\n \"type\": \"string\"\n },\n \"sslTruststorePassword\": {\n \"type\": \"string\"\n },\n \"sslTruststorePath\": {\n \"type\": \"string\"\n },\n \"sslTruststoreType\": {\n \"type\": \"string\"\n },\n \"topicPrefix\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pulsarServiceUrl\"\n ],\n \"type\": \"object\"\n },\n \"config\": {\n \"description\": \"CassandraConfig contains configuration settings that are applied to cassandra.yaml, dse.yaml\\nand the various jvm*.options files.\",\n \"properties\": {\n \"cassandraYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"dseYaml\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"jvmOptions\": {\n \"properties\": {\n \"additionalJvm11ServerOptions\": {\n \"description\": \"Jvm11ServerOptions are additional options that will be passed on to the jvm11-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvm8ServerOptions\": {\n \"description\": \"Jvm8ServerOptions are additional options that will be passed on to the jvm8-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalJvmServerOptions\": {\n \"description\": \"JvmServerOptions are additional options that will be passed on to the jvm-server-options file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"additionalOptions\": {\n \"description\": \"Additional, arbitrary JVM options which are written into the cassandra-env.sh file.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"cassandra_available_processors\": {\n \"description\": \"Available CPU processors.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.available_processors.\",\n \"type\": \"integer\"\n },\n \"cassandra_disable_auth_caches_remote_configuration\": {\n \"description\": \"Disable remote configuration via JMX of auth caches.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.disable_auth_caches_remote_configuration.\",\n \"type\": \"boolean\"\n },\n \"cassandra_expiration_date_overflow_policy\": {\n \"description\": \"Defines how to handle INSERT requests with TTL exceeding the maximum supported expiration\\ndate.\\nPossible values include `REJECT`, `CAP`, `CAP_NOWARN`.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.expiration_date_overflow_policy.\",\n \"type\": \"string\"\n },\n \"cassandra_force_3_0_protocol_version\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Dcassandra.force_3_0_protocol_version=true.\",\n \"type\": \"boolean\"\n },\n \"cassandra_force_default_indexing_page_size\": {\n \"description\": \"Disable dynamic calculation of the page size used when indexing an entire partition (during\\ninitial index build/rebuild).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.force_default_indexing_page_size.\",\n \"type\": \"boolean\"\n },\n \"cassandra_max_hint_ttl_seconds\": {\n \"description\": \"Imposes an upper bound on hint lifetime below the normal min gc_grace_seconds.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.maxHintTTL.\",\n \"type\": \"integer\"\n },\n \"cassandra_metrics_reporter_config_file\": {\n \"description\": \"Enable pluggable metrics reporter.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.metricsReporterConfigFile.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_ring_delay_ms\": {\n \"description\": \"Amount of time in milliseconds that a node waits before joining the ring.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.ring_delay_ms.\",\n \"type\": \"integer\"\n },\n \"cassandra_triggers_directory\": {\n \"description\": \"Default location for the trigger JARs.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.triggers_dir.\\nTODO mountable directory\",\n \"type\": \"string\"\n },\n \"cassandra_write_survey\": {\n \"description\": \"For testing new compaction and compression strategies.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.write_survey.\",\n \"type\": \"boolean\"\n },\n \"debug_disable_contended_annotations\": {\n \"description\": \"Disable honoring user code @Contended annotations.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-RestrictContended.\",\n \"type\": \"boolean\"\n },\n \"debug_enable_flight_recorder\": {\n \"description\": \"Enable Flight Recorder (Use in production is subject to Oracle licensing).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+FlightRecorder.\",\n \"type\": \"boolean\"\n },\n \"debug_listen_remote_debuggers\": {\n \"description\": \"Listen for JVM remote debuggers on port 1414.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1414\\\".\",\n \"type\": \"boolean\"\n },\n \"debug_log_compilation\": {\n \"description\": \"Make Cassandra JVM log internal method compilation (developers only).\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+LogCompilation.\",\n \"type\": \"boolean\"\n },\n \"debug_non_safepoints\": {\n \"description\": \"Whether the compiler should generate the necessary metadata for the parts of the code not at\\nsafe points as well. For use with Flight Recorder.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+DebugNonSafepoints.\",\n \"type\": \"boolean\"\n },\n \"debug_preserve_frame_pointer\": {\n \"description\": \"Preserve Frame Pointer.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PreserveFramePointer.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_commercial_features\": {\n \"description\": \"Unlock commercial features.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockCommercialFeatures.\",\n \"type\": \"boolean\"\n },\n \"debug_unlock_diagnostic_vm_options\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UnlockDiagnosticVMOptions.\",\n \"type\": \"boolean\"\n },\n \"gc\": {\n \"default\": \"G1GC\",\n \"description\": \"The name of the garbage collector to use. Depending on the Cassandra version, not all values\\nare supported: Cassandra 3.11 supports only G1GC and CMS; Cassandra 4.0 supports G1GC, ZGC,\\nShenandoah and Graal. This option will unlock the corresponding garbage collector with a\\ndefault configuration; to further tune the GC settings, use the additional JVM options field.\\nUse the special value Custom if you intend to use non-standard garbage collectors.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\",\n \"enum\": [\n \"G1GC\",\n \"CMS\",\n \"ZGC\",\n \"Shenandoah\",\n \"Graal\",\n \"Custom\"\n ],\n \"type\": \"string\"\n },\n \"gc_cms_heap_size_young_generation\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xmn.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_cms_initiating_occupancy_fraction\": {\n \"description\": \"Defaults to 75. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSInitiatingOccupancyFraction.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_cms_max_tenuring_threshold\": {\n \"description\": \"Defaults to 1. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:MaxTenuringThreshold.\",\n \"type\": \"integer\"\n },\n \"gc_cms_survivor_ratio\": {\n \"description\": \"Defaults to 8. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:SurvivorRatio.\",\n \"type\": \"integer\"\n },\n \"gc_cms_wait_duration_ms\": {\n \"description\": \"Defaults to 10000. Can only be used when CMS garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:CMSWaitDuration.\",\n \"type\": \"integer\"\n },\n \"gc_g1_conc_threads\": {\n \"description\": \"Concurrent GC Threads. Can only be used when G1 garbage collector is used.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ConcGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_initiating_heap_occupancy_percent\": {\n \"description\": \"Initiating Heap Occupancy Percentage. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:InitiatingHeapOccupancyPercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_g1_max_gc_pause_ms\": {\n \"description\": \"G1GC Max GC Pause in milliseconds. Defaults to 500. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:MaxGCPauseMillis.\",\n \"type\": \"integer\"\n },\n \"gc_g1_parallel_threads\": {\n \"description\": \"Parallel GC Threads. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:ParallelGCThreads.\",\n \"type\": \"integer\"\n },\n \"gc_g1_rset_updating_pause_time_percent\": {\n \"description\": \"G1GC Updating Pause Time Percentage. Defaults to 5. Can only be used when G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -XX:G1RSetUpdatingPauseTimePercent.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"gc_print_application_stopped_time\": {\n \"description\": \"Print GC Application Stopped Time.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCApplicationStoppedTime.\",\n \"type\": \"boolean\"\n },\n \"gc_print_date_stamps\": {\n \"description\": \"Print GC Date Stamps. Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDateStamps.\",\n \"type\": \"boolean\"\n },\n \"gc_print_details\": {\n \"description\": \"Print GC details.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintGCDetails.\",\n \"type\": \"boolean\"\n },\n \"gc_print_flss_statistics\": {\n \"description\": \"Print FLSS Statistics.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:PrintFLSStatistics=1.\",\n \"type\": \"boolean\"\n },\n \"gc_print_heap\": {\n \"description\": \"Print Heap at GC.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintHeapAtGC.\",\n \"type\": \"boolean\"\n },\n \"gc_print_log_file_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Size of each log file.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:GCLogFileSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"gc_print_number_of_log_files\": {\n \"description\": \"Number of GC log files.\\nDisabled by default. Can only be used when the G1 garbage collector is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:NumberOfGCLogFiles.\",\n \"type\": \"integer\"\n },\n \"gc_print_promotion_failure\": {\n \"description\": \"Print promotion failure.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintPromotionFailure.\",\n \"type\": \"boolean\"\n },\n \"gc_print_tenuring_distribution\": {\n \"description\": \"Print tenuring distribution.\\nDefaults to false.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+PrintTenuringDistribution.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file\": {\n \"description\": \"Whether to print GC logs to /var/log/cassandra/gc.log.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -Xloggc:/var/log/cassandra/gc.log.\",\n \"type\": \"boolean\"\n },\n \"gc_print_use_log_file_rotation\": {\n \"description\": \"Use GC Log File Rotation.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:+UseGCLogFileRotation.\",\n \"type\": \"boolean\"\n },\n \"heapNewGenSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use gc_cms_heap_size_young_generation instead.\\nValid for CMS garbage collector only + Cassandra 3.11.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Deprecated. Use heap_initial_size and heap_max_size instead. If this field is defined,\\nit applies to both max_heap_size and initial_heap_size.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_initial_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xms.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"heap_max_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xmx.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"jdk_allow_attach_self\": {\n \"description\": \"Allow the current VM to attach to itself.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Djdk.attach.allowAttachSelf=true.\",\n \"type\": \"boolean\"\n },\n \"jmx_connection_type\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nPossible values for 3.11 include `local-no-auth`, `remote-no-auth`, and `remote-dse-unified-auth`. Defaults to `local-no-auth`.\\nPossible values for 4.0 include `local-no-auth`, `remote-no-auth`. Defaults to `local-no-auth`.\",\n \"type\": \"string\"\n },\n \"jmx_port\": {\n \"description\": \"Disabled by default. Defaults to 7199.\\nTODO Make Reaper aware of the JMX port if a non-default port is used.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"integer\"\n },\n \"jmx_remote_ssl\": {\n \"description\": \"Cass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nDefaults to false.\\nValid only when JmxConnectionType is \\\"remote-no-auth\\\", \\\"remote-dse-unified-auth\\\".\",\n \"type\": \"boolean\"\n },\n \"jmx_remote_ssl_opts\": {\n \"description\": \"Remote SSL options.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"string\"\n },\n \"jmx_remote_ssl_require_client_auth\": {\n \"description\": \"Require Client Authentication for remote SSL? Defaults to false.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\",\n \"type\": \"boolean\"\n },\n \"netty_eventloop_maxpendingtasks\": {\n \"description\": \"Defaults to 65536.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dio.netty.eventLoop.maxPendingTasks.\",\n \"type\": \"integer\"\n },\n \"netty_try_reflection_set_accessible\": {\n \"description\": \"Netty setting `io.netty.tryReflectionSetAccessible`.\\nDefaults to true.\\nCass Config Builder: supported for Cassandra 4.0 in jvm11-server.options.\\nCorresponds to: -Dio.netty.tryReflectionSetAccessible=true.\",\n \"type\": \"boolean\"\n },\n \"nio_align_direct_memory\": {\n \"description\": \"Align direct memory allocations on page boundaries.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dsun.nio.PageAlignDirectMemory=true.\",\n \"type\": \"boolean\"\n },\n \"nio_maxcachedbuffersize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Defaults to 1048576.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djdk.nio.maxCachedBufferSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_always_pre_touch\": {\n \"description\": \"Ensure all memory is faulted and zeroed on startup.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+AlwaysPreTouch.\",\n \"type\": \"boolean\"\n },\n \"vm_crash_on_out_of_memory_error\": {\n \"description\": \"Disabled by default. Requires `exit_on_out_of_memory_error` to be disabled..\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+CrashOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_biased_locking\": {\n \"description\": \"Disable biased locking to avoid biased lock revocation pauses.\\nDisabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:-UseBiasedLocking.\\nNote: the Cass Config Builder option is named use_biased_locking, but setting it to true\\ndisables biased locking.\",\n \"type\": \"boolean\"\n },\n \"vm_disable_perf_shared_mem\": {\n \"description\": \"Disable hsperfdata mmap'ed file.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+PerfDisableSharedMem.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_assertions\": {\n \"description\": \"Enable assertions.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -ea.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_non_root_thread_priority\": {\n \"description\": \"Enable lowering thread priority without being root on linux.\\nSee CASSANDRA-1181 for details.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCorresponds to: -XX:ThreadPriorityPolicy=42.\",\n \"type\": \"boolean\"\n },\n \"vm_enable_thread_priorities\": {\n \"description\": \"Enable thread priorities.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseThreadPriorities.\",\n \"type\": \"boolean\"\n },\n \"vm_exit_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ExitOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_guaranteed_safepoint_interval_ms\": {\n \"description\": \"Defaults to 300000 milliseconds.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:GuaranteedSafepointInterval.\",\n \"type\": \"integer\"\n },\n \"vm_heap_dump_on_out_of_memory_error\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+HeapDumpOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_per_thread_stack_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Per-thread stack size.\\nDefaults to 256Ki.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Xss.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_prefer_ipv4\": {\n \"description\": \"Prefer binding to IPv4 network interfaces.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Djava.net.preferIPv4Stack=true.\",\n \"type\": \"boolean\"\n },\n \"vm_print_heap_histogram_on_out_of_memory_error\": {\n \"description\": \"Disabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -Dcassandra.printHeapHistogramOnOutOfMemoryError.\",\n \"type\": \"boolean\"\n },\n \"vm_resize_tlab\": {\n \"description\": \"Allow resizing of thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+ResizeTLAB.\",\n \"type\": \"boolean\"\n },\n \"vm_string_table_size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The size of interned string table. Larger sizes are beneficial to gossip.\\nDefaults to 1000003.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:StringTableSize.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"vm_use_numa\": {\n \"description\": \"Enabled by default.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseNUMA.\",\n \"type\": \"boolean\"\n },\n \"vm_use_tlab\": {\n \"description\": \"Enable thread-local allocation blocks.\\nEnabled by default.\\nCass Config Builder: supported for Cassandra 3.11 in jvm.options.\\nCass Config Builder: supported for Cassandra 4.0 in jvm-server.options.\\nCorresponds to: -XX:+UseTLAB.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers defines containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own containers, which can be referenced here to override specific settings,\\nsuch as mounts or resources request/limits for example.\\nExample:\\n containers:\\n - name: server-system-logger\\n - name: custom-container\\n image: busybox\\n - name: cassandra\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"datacenterName\": {\n \"description\": \"DatacenterName allows to override the name of the Cassandra datacenter. Kubernetes objects will be named after a sanitized version of it if set, and if not metadata.name. In Cassandra the DC name will be overridden by this value.\\nIt may generate some confusion as objects created for the DC will have a different name than the CasandraDatacenter object itself.\\nThis setting can create conflicts if multiple DCs coexist in the same namespace if metadata.name for a DC with no override is set to the same value as the override name of another DC.\\nUse cautiously.\",\n \"type\": \"string\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extraVolumes\": {\n \"description\": \"Volumes defines additional volumes to be added to each Cassandra pod.\\nIf the volume uses a PersistentVolumeClaim, the PVC will be managed by the statefulset.\",\n \"properties\": {\n \"pvcs\": {\n \"description\": \"PVCs defines additional volumes to be added to each Cassandra pod and managed by the statefulset.\\nSuch volumes are automatically mounted by cass-operator into the cassandra containers.\",\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes defines volumes to be added to each Cassandra pod.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers defines init-containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own init-containers, which can be referenced here to control ordering or override specific settings\\nsuch as mounts or resources request/limits for example.\\nOnly the name of the k8ssandra-operator/cass-operator init-containers is required, not their full definition which will be created by the operators.\\nExample:\\n initContainers:\\n - name: server-config-init\\n - name: custom-init-container\\n image: busybox\\n - name: medusa-restore\\nOtherwise init-containers referenced here will be injected in first position\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jmxInitContainerImage\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. We don't need an init container to configure JMX\\nauthentication anymore. The value of this field will be ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"k8sContext\": {\n \"type\": \"string\"\n },\n \"managementApiAuth\": {\n \"description\": \"ManagementApiAuth defines the authentication settings for the management API in the Cassandra pods.\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"description\": \"labels/annotations for all of the CassandraDatacenter service components\",\n \"properties\": {\n \"additionalSeedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allPodsService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"mgmtAPIHeap\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MgmtAPIHeap defines the amount of memory devoted to the management\\napi heap.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"networking\": {\n \"description\": \"Networking enables host networking and configures a NodePort ports.\",\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"perNodeConfigInitContainerImage\": {\n \"default\": \"mikefarah/yq:4\",\n \"description\": \"The image to use in each Cassandra pod for the (short-lived) init container that merges global and perNodeConfig\\nconfiguration. This is only useful when PerNodeConfigMapRef is set.\\nThe default is \\\"mikefarah/yq:4\\\".\",\n \"type\": \"string\"\n },\n \"perNodeConfigMapRef\": {\n \"description\": \"PerNodeConfigMapRef is a reference to a ConfigMap that contains per-node configuration for\\nthis DC. The ConfigMap is expected to have entries in the following form:\\n\\u003cpod-name\\u003e_\\u003cfile-name\\u003e.yaml, where \\u003cpod-name\\u003e is the name of the pod and \\u003cfile-name\\u003e is the\\nname of a configuration file (typically, cassandra.yaml). The value of the entry is expected\\nto be a YAML fragment that contains the per-node configuration for each pod. When the pod is\\nstarted, the per-node ConfigMap is mounted and the contents of each entry corresponding to\\nthe pod are merged into their respective configuration files.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext defines the security context for the Cassandra pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks is a list of named racks. Note that racks are used to create node affinity. //\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is the cpu and memory resources for the cassandra container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverImage\": {\n \"description\": \"ServerImage is the image for the cassandra container. Note that this should be a\\nmanagement-api image. If left empty the operator will choose a default image based\\non ServerVersion.\",\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"ServerVersion is the Cassandra or DSE version. The following versions are supported:\\n- Cassandra: 3.11.X, 4.X.X and 5.X.X\\n- DSE: 6.8.X, 7.x.x\\n- HCD: 1.0.x\",\n \"pattern\": \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"The k8s service account to use for the Cassandra pods\",\n \"type\": \"string\"\n },\n \"size\": {\n \"description\": \"Size is the number Cassandra pods to deploy in this datacenter.\\nThis number does not include Stargate instances.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"softPodAntiAffinity\": {\n \"description\": \"SoftPodAntiAffinity sets whether multiple Cassandra instances can be scheduled on the same node.\\nThis should normally be false to ensure cluster resilience but may be set true for test/dev scenarios to minimise\\nthe number of nodes required.\",\n \"type\": \"boolean\"\n },\n \"stargate\": {\n \"description\": \"Stargate defines the desired deployment characteristics for Stargate in this datacenter. Leave nil to skip\\ndeploying Stargate in this datacenter.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks allow customizing Stargate characteristics for specific racks in the datacenter.\",\n \"items\": {\n \"description\": \"StargateRackTemplate defines custom rules for Stargate pods in a given rack.\\nThese rules will be merged with rules defined at datacenter level in a StargateDatacenterTemplate; rack-level rules\\nhave precedence over datacenter-level ones.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the rack name. It must correspond to an existing rack name in the CassandraDatacenter resource where\\nStargate is being deployed, otherwise it will be ignored.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n },\n \"stopped\": {\n \"default\": false,\n \"description\": \"Stopped means that the datacenter will be stopped. Use this for maintenance or for cost saving. A stopped\\nCassandraDatacenter will have no running server pods, like using \\\"stop\\\" with traditional System V init scripts.\\nOther Kubernetes resources will be left intact, and volumes will re-attach when the CassandraDatacenter\\nworkload is resumed.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig is the persistent storage requirements for each Cassandra pod. This\\nincludes everything under /var/lib/cassandra, namely the commit log and data\\ndirectories.\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired state for telemetry resources in this datacenter.\\nIf telemetry configurations are defined, telemetry resources will be deployed to integrate with\\na user-provided monitoring solution (at present, only support for Prometheus is available).\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to every Cassandra pod.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dseWorkloads\": {\n \"properties\": {\n \"analyticsEnabled\": {\n \"type\": \"boolean\"\n },\n \"graphEnabled\": {\n \"type\": \"boolean\"\n },\n \"searchEnabled\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"extraVolumes\": {\n \"description\": \"Volumes defines additional volumes to be added to each Cassandra pod.\\nIf the volume uses a PersistentVolumeClaim, the PVC will be managed by the statefulset.\",\n \"properties\": {\n \"pvcs\": {\n \"description\": \"PVCs defines additional volumes to be added to each Cassandra pod and managed by the statefulset.\\nSuch volumes are automatically mounted by cass-operator into the cassandra containers.\",\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes defines volumes to be added to each Cassandra pod.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume.\\nMust be a DNS_LABEL and unique within the pod.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers defines init-containers to be deployed in each Cassandra pod.\\nK8ssandra-operator and cass-operator will create their own init-containers, which can be referenced here to control ordering or override specific settings\\nsuch as mounts or resources request/limits for example.\\nOnly the name of the k8ssandra-operator/cass-operator init-containers is required, not their full definition which will be created by the operators.\\nExample:\\n initContainers:\\n - name: server-config-init\\n - name: custom-init-container\\n image: busybox\\n - name: medusa-restore\\nOtherwise init-containers referenced here will be injected in first position\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint.\\nThe container image's CMD is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell.\\nThe container image's ENTRYPOINT is used if this is not provided.\\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will\\nproduce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless\\nof whether the variable exists or not. Cannot be updated.\\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container.\\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\\nwill be reported as an event when the container is starting. When a key exists in multiple\\nsources, the value associated with the last source will take precedence.\\nValues defined by an Env with a duplicate key will take precedence.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name.\\nMore info: https://kubernetes.io/docs/concepts/containers/images\\nThis field is optional to allow higher level config management to default or override\\ncontainer images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy.\\nOne of Always, Never, IfNotPresent.\\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events.\\nCannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails,\\nthe container is terminated and restarted according to its restart policy.\\nOther management of the container blocks until the hook completes.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an\\nAPI request or management event such as liveness/startup probe failure,\\npreemption, resource contention, etc. The handler is not called if the\\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\\nPreStop hook is executed. Regardless of the outcome of the handler, the\\ncontainer will eventually terminate within the Pod's termination grace\\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\\nor until the termination grace period is reached.\\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"sleep\": {\n \"description\": \"Sleep represents the duration that the container should sleep before being terminated.\",\n \"properties\": {\n \"seconds\": {\n \"description\": \"Seconds is the number of seconds to sleep.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"seconds\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\\nfor the backward compatibility. There are no validation of this field and\\nlifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness.\\nContainer will be restarted if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL.\\nEach container in a pod must have a unique name (DNS_LABEL).\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here\\nDOES NOT prevent that port from being exposed. Any port which is\\nlistening on the default \\\"0.0.0.0\\\" address inside a container will be\\naccessible from the network.\\nModifying this array with strategic merge patch may corrupt the data.\\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address.\\nThis must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host.\\nIf specified, this must be a valid port number, 0 \\u003c x \\u003c 65536.\\nIf HostNetwork is specified, this must match ContainerPort.\\nMost containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\\nnamed port in a pod must have a unique name. Name for the port that can be\\nreferred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP.\\nDefaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness.\\nContainer will be removed from service endpoints if the probe fails.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies.\\nSupported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized.\\nIf not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod.\\nThis field may only be set for init containers, and the only allowed value is \\\"Always\\\".\\nFor non-init containers or when this field is not specified,\\nthe restart behavior is defined by the Pod's restart policy and the container type.\\nSetting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect:\\nthis init container will be continually restarted on\\nexit until all regular containers have terminated. Once all regular\\ncontainers have completed, all init containers with restartPolicy \\\"Always\\\"\\nwill be shut down. This lifecycle differs from normal init containers and\\nis often referred to as a \\\"sidecar\\\" container. Although this init\\ncontainer still starts in the init container sequence, it does not wait\\nfor the container to complete before proceeding to the next init\\ncontainer. Instead, the next init container starts immediately after this\\ninit container is started, or after any startupProbe has successfully\\ncompleted.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with.\\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized.\\nIf specified, no other probes are executed until this completes successfully.\\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\\nThis cannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this\\nis not set, reads from stdin in the container will always result in EOF.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by\\na single attach. When stdin is true the stdin stream will remain open across multiple attach\\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\\nat which time stdin is closed and remains closed until the container is restarted. If this\\nflag is false, a container processes that reads from stdin will never receive an EOF.\\nDefault is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message\\nwill be written is mounted into the container's filesystem.\\nMessage written is intended to be brief final status, such as an assertion failure message.\\nWill be truncated by the node if greater than 4096 bytes. The total message length across\\nall containers will be limited to 12kb.\\nDefaults to /dev/termination-log.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of\\nterminationMessagePath to populate the container status message on both success and failure.\\nFallbackToLogsOnError will use the last chunk of container log output if the termination\\nmessage file is empty and the container exited with an error.\\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\\nDefaults to File.\\nCannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\\nDefault is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem.\\nCannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory.\\nIf not specified, the container runtime's default will be used, which\\nmight be configured in the container image.\\nCannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jmxInitContainerImage\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. We don't need an init container to configure JMX\\nauthentication anymore. The value of this field will be ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"managementApiAuth\": {\n \"description\": \"ManagementApiAuth defines the authentication settings for the management API in the Cassandra pods.\",\n \"properties\": {\n \"insecure\": {\n \"type\": \"object\"\n },\n \"manual\": {\n \"properties\": {\n \"clientSecretName\": {\n \"type\": \"string\"\n },\n \"serverSecretName\": {\n \"type\": \"string\"\n },\n \"skipSecretValidation\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"clientSecretName\",\n \"serverSecretName\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"Struct to hold labels and annotations for the top-level Cassandra cluster definition.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonAnnotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"services\": {\n \"description\": \"labels/annotations for all of the CassandraDatacenter service components\",\n \"properties\": {\n \"additionalSeedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allPodsService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"dcService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodePortService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"seedService\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mgmtAPIHeap\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MgmtAPIHeap defines the amount of memory devoted to the management\\napi heap.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"networking\": {\n \"description\": \"Networking enables host networking and configures a NodePort ports.\",\n \"properties\": {\n \"hostNetwork\": {\n \"type\": \"boolean\"\n },\n \"nodePort\": {\n \"properties\": {\n \"internode\": {\n \"type\": \"integer\"\n },\n \"internodeSSL\": {\n \"type\": \"integer\"\n },\n \"native\": {\n \"type\": \"integer\"\n },\n \"nativeSSL\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"perNodeConfigInitContainerImage\": {\n \"default\": \"mikefarah/yq:4\",\n \"description\": \"The image to use in each Cassandra pod for the (short-lived) init container that merges global and perNodeConfig\\nconfiguration. This is only useful when PerNodeConfigMapRef is set.\\nThe default is \\\"mikefarah/yq:4\\\".\",\n \"type\": \"string\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext defines the security context for the Cassandra pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks is a list of named racks. Note that racks are used to create node affinity. //\",\n \"items\": {\n \"description\": \"Rack ...\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity rules to set for this rack only. Merged with values from PodTemplateSpec Affinity as well as NodeAffinityLabels. If you wish to override all the default\\nPodAntiAffinity rules, set allowMultipleWorkers to true, otherwise defaults are applied and then these Affinity settings are merged.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"The rack name\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeAffinityLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeAffinityLabels to pin the rack, using node affinity\",\n \"type\": \"object\"\n },\n \"zone\": {\n \"description\": \"Deprecated. Use nodeAffinityLabels instead. DeprecatedZone name to pin the rack, using node affinity\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is the cpu and memory resources for the cassandra container.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serverEncryptionStores\": {\n \"description\": \"Internode encryption stores which are used by Cassandra and Stargate.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"serverImage\": {\n \"description\": \"ServerImage is the image for the cassandra container. Note that this should be a\\nmanagement-api image. If left empty the operator will choose a default image based\\non ServerVersion.\",\n \"type\": \"string\"\n },\n \"serverType\": {\n \"default\": \"cassandra\",\n \"description\": \"Server type: \\\"cassandra\\\" or \\\"dse\\\".\",\n \"enum\": [\n \"cassandra\",\n \"dse\",\n \"hcd\"\n ],\n \"type\": \"string\"\n },\n \"serverVersion\": {\n \"description\": \"ServerVersion is the Cassandra or DSE version. The following versions are supported:\\n- Cassandra: 3.11.X, 4.X.X and 5.X.X\\n- DSE: 6.8.X, 7.x.x\\n- HCD: 1.0.x\",\n \"pattern\": \"(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\",\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"description\": \"The k8s service account to use for the Cassandra pods\",\n \"type\": \"string\"\n },\n \"softPodAntiAffinity\": {\n \"description\": \"SoftPodAntiAffinity sets whether multiple Cassandra instances can be scheduled on the same node.\\nThis should normally be false to ensure cluster resilience but may be set true for test/dev scenarios to minimise\\nthe number of nodes required.\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"StorageConfig is the persistent storage requirements for each Cassandra pod. This\\nincludes everything under /var/lib/cassandra, namely the commit log and data\\ndirectories.\",\n \"properties\": {\n \"additionalVolumes\": {\n \"items\": {\n \"description\": \"AdditionalVolumes defines additional storage configurations\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Mount path into cassandra container\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the pvc / volume\",\n \"pattern\": \"[a-z0-9]([-a-z0-9]*[a-z0-9])?\",\n \"type\": \"string\"\n },\n \"pvcSpec\": {\n \"description\": \"PVCSpec is a persistent volume claim spec. Either this or VolumeSource is required.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeSource\": {\n \"description\": \"VolumeSource to mount the volume from (such as ConfigMap / Secret). This or PVCSpec is required.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin\\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect\\nto OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder.\\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume.\\nConsult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nIf not provided, the empty value is passed to the associated CSI driver\\nwhich will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing\\nsensitive information to pass to the CSI driver to complete the CSI\\nNodePublishVolume and NodeUnpublishVolume calls.\\nThis field is optional, and may be empty if no secret is required. If the\\nsecret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume.\\nDefaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI\\ndriver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a\\nOptional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDefaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver.\\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\\nand deleted when the pod is removed.\\n\\n\\nUse this if:\\na) the volume is only needed while the pod runs,\\nb) features of normal volumes like restoring from snapshot or capacity\\n tracking are needed,\\nc) the storage driver is specified through a storage class, and\\nd) the storage driver supports dynamic volume provisioning through\\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\\n information on the connection between this volume type\\n and PersistentVolumeClaim).\\n\\n\\nUse PersistentVolumeClaim or one of the vendor-specific\\nAPIs for volumes that persist for longer than the lifecycle\\nof an individual pod.\\n\\n\\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\\nbe used that way - see the documentation of the driver for\\nmore information.\\n\\n\\nA pod can use both types of ephemeral volumes and\\npersistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume.\\nThe pod in which this EphemeralVolumeSource is embedded will be the\\nowner of the PVC, i.e. the PVC will be deleted together with the\\npod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where\\n`\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array\\nentry. Pod validation will reject the pod if the concatenated name\\nis not valid for a PVC (for example, too long).\\n\\n\\nAn existing PVC with that name that is not owned by the pod\\nwill *not* be used for the pod to avoid using an unrelated\\nvolume by mistake. Starting the pod is then blocked until\\nthe unrelated PVC is removed. If such a pre-created PVC is\\nmeant to be used by the pod, the PVC has to updated with an\\nowner reference to the pod once the pod exists. Normally\\nthis should not be necessary, but it may be useful when\\nmanually reconstructing a broken cluster.\\n\\n\\nThis field is read-only and no changes will be made by Kubernetes\\nto the PVC after it has been created.\\n\\n\\nRequired, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC\\nwhen creating it. No other fields are allowed and will be rejected during\\nvalidation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is\\ncopied unchanged into the PVC that gets created from this\\ntemplate. The same fields as in a PersistentVolumeClaim\\nare also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids)\\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is\\nprovisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing\\nsensitive information to pass to the plugin scripts. This may be\\nempty if no secret object is specified. If the secret object\\ncontains more than one secret, all secrets are passed to the plugin\\nscripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker\\nshould be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount.\\nIf omitted, the default is to mount by volume name.\\nExamples: For volume /dev/sda1, you specify the partition as \\\"1\\\".\\nSimilarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision.\\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\\ninto the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name.\\nMust not contain or start with '..'. If '.' is supplied, the volume directory will be the\\ngit repository. Otherwise, if specified, the volume will contain the git repository in\\nthe subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host\\nmachine that is directly exposed to the container. This is generally\\nused for system agents or other privileged things that are allowed\\nto see the host machine. Most containers will NOT need this.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\\n---\\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\\nmount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host.\\nIf the path is a symlink, it will follow the link to the real path.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume\\nDefaults to \\\"\\\"\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a\\nkubelet's host machine and then exposed to the pod.\\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name.\\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\\n\\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport.\\nDefaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\\nis other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions.\\nDefaults to false.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a\\nPersistentVolumeClaim in the same namespace.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts.\\nDefault false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"clusterTrustBundle\": {\n \"description\": \"ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field\\nof ClusterTrustBundle objects in an auto-updating file.\\n\\n\\nAlpha, gated by the ClusterTrustBundleProjection feature gate.\\n\\n\\nClusterTrustBundle objects can either be selected by name, or by the\\ncombination of signer name and a label selector.\\n\\n\\nKubelet performs aggressive normalization of the PEM contents written\\ninto the pod filesystem. Esoteric PEM features such as inter-block\\ncomments and block headers are stripped. Certificates are deduplicated.\\nThe ordering of certificates within the file is arbitrary, and Kubelet\\nmay change the order over time.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"Select all ClusterTrustBundles that match this label selector. Only has\\neffect if signerName is set. Mutually-exclusive with name. If unset,\\ninterpreted as \\\"match nothing\\\". If set but empty, interpreted as \\\"match\\neverything\\\".\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"name\": {\n \"description\": \"Select a single ClusterTrustBundle by object name. Mutually-exclusive\\nwith signerName and labelSelector.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"If true, don't block pod startup if the referenced ClusterTrustBundle(s)\\naren't available. If using name, then the named ClusterTrustBundle is\\nallowed not to exist. If using signerName, then the combination of\\nsignerName and labelSelector is allowed to match zero\\nClusterTrustBundles.\",\n \"type\": \"boolean\"\n },\n \"path\": {\n \"description\": \"Relative path from the volume root to write the bundle.\",\n \"type\": \"string\"\n },\n \"signerName\": {\n \"description\": \"Select all ClusterTrustBundles that match this signer name.\\nMutually-exclusive with name. The contents of all selected\\nClusterTrustBundles will be unified and deduplicated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nConfigMap will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the ConfigMap,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value\\nbetween 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token\\nmust identify itself with an identifier specified in the audience of the\\ntoken, and otherwise should reject the token. The audience defaults to the\\nidentifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service\\naccount token. As the token approaches expiration, the kubelet volume\\nplugin will proactively rotate the service account token. The kubelet will\\nstart trying to rotate the token if the token is older than 80 percent of\\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\\nand must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the\\ntoken into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to\\nDefault is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions.\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services\\nspecified as a string as host:port pair (multiple entries are separated with commas)\\nwhich acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend\\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to\\nDefaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount.\\nTip: Ensure that the filesystem type is supported by the host operating system.\\nExamples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\\nTODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser.\\nDefault is /etc/ceph/keyring.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name.\\nDefault is rbd.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts.\\nDefaults to false.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided\\noverrides keyring.\\nDefault is nil.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"description\": \"user is the rados user name.\\nDefault is admin.\\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\".\\nDefault is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other\\nsensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\\nDefault is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system\\nthat is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values\\nfor mode bits. Defaults to 0644.\\nDirectories within the path are not affected by this setting.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced\\nSecret will be projected into the volume as a file whose name is the\\nkey and content is the value. If specified, the listed keys will be\\nprojected into the specified paths, and unlisted keys will not be\\npresent. If a key is specified which is not present in the Secret,\\nthe volume setup will error unless it is marked optional. Paths must be\\nrelative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file.\\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\\nIf not specified, the volume defaultMode will be used.\\nThis might be in conflict with other options that affect the file\\nmode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to.\\nMay not be an absolute path.\\nMay not contain the path element '..'.\\nMay not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force\\nthe ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API\\ncredentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume\\nnames are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no\\nnamespace is specified then the Pod's namespace will be used. This allows the\\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\\nSet VolumeName to any name to override the default behaviour.\\nSet to \\\"default\\\" if you are not using namespaces within StorageOS.\\nNamespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount.\\nMust be a filesystem type supported by the host operating system.\\nEx. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"cassandraDataVolumeClaimSpec\": {\n \"description\": \"PersistentVolumeClaimSpec describes the common attributes of storage devices\\nand allows a Source for provider-specific attributes\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"superuserSecretRef\": {\n \"description\": \"The reference to the superuser secret to use for Cassandra. If unspecified, a default secret will be generated\\nwith a random password; the generated secret name will be \\\"\\u003ccluster_name\\u003e-superuser\\\" where \\u003ccluster_name\\u003e is the\\nK8ssandraCluster CRD name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired state for telemetry resources in this datacenter.\\nIf telemetry configurations are defined, telemetry resources will be deployed to integrate with\\na user-provided monitoring solution (at present, only support for Prometheus is available).\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to every Cassandra pod.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"externalDatacenters\": {\n \"description\": \"During a migration the operator should alter keyspaces replication settings including the following external DCs.\\nThis avoids removing replicas from datacenters which are outside of the operator scope (not referenced in the CR).\\nReplication settings changes will only apply to system_* keyspaces as well as reaper_db and data_endpoint_auth (Stargate).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"medusa\": {\n \"description\": \"Medusa defines the desired deployment characteristics for Medusa in this K8ssandraCluster.\\nIf this is non-nil, Medusa will be deployed in every Cassandra pod in this K8ssandraCluster.\",\n \"properties\": {\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Medusa will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Medusa instances, so that it can authenticate against nodes in the datacenter using CQL.\\nThe secret must be in the same namespace as Cassandra and must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"certificatesSecretRef\": {\n \"description\": \"Certificates for Medusa if client encryption is enabled in Cassandra.\\nThe secret must be in the same namespace as Cassandra and must contain three keys: \\\"rootca.crt\\\", \\\"client.crt_signed\\\" and \\\"client.key\\\".\\nSee https://docs.datastax.com/en/developer/python-driver/latest/security/ for more information on the required files.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"description\": \"MedusaContainerImage is the image characteristics to use for Medusa containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"containerResources\": {\n \"description\": \"Medusa main container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"medusa-restore init container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Define the liveness probe settings to use for the Medusa containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"medusaConfigurationRef\": {\n \"description\": \"MedusaConfigurationRef points to an existing MedusaConfiguration object.\\nThe purpose is to allow shared default settings across several clusters.\\nStorageProperties override the settings from MedusaConfiguration object to allow customization.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"purgeBackups\": {\n \"default\": true,\n \"description\": \"PurgeBackups toggles if the medusa backups should be purged nightly or not\\nDefaults to true.\",\n \"type\": \"boolean\"\n },\n \"readinessProbe\": {\n \"description\": \"Define the readiness probe settings to use for the Medusa containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Medusa containers.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageProperties\": {\n \"description\": \"Provides all storage backend related properties for backups.\",\n \"properties\": {\n \"apiProfile\": {\n \"description\": \"AWS Profile to use for authentication.\",\n \"type\": \"string\"\n },\n \"backupGracePeriodInDays\": {\n \"description\": \"Age after which orphan sstables can be deleted from the storage backend.\\nProtects from race conditions between purge and ongoing backups.\\nDefaults to 10 days.\",\n \"type\": \"integer\"\n },\n \"bucketName\": {\n \"description\": \"The name of the bucket to use for the backups.\",\n \"type\": \"string\"\n },\n \"concurrentTransfers\": {\n \"default\": 0,\n \"description\": \"Number of concurrent uploads.\\nHelps maximizing the speed of uploads but puts more pressure on the network.\\nDefaults to 0.\",\n \"type\": \"integer\"\n },\n \"credentialsType\": {\n \"description\": \"Type of credentials to use for authentication.\\nCan be \\\"role-based\\\", \\\"credential-based\\\" or empty.\",\n \"enum\": [\n \"role-based\",\n \"credential-based\"\n ],\n \"type\": \"string\"\n },\n \"host\": {\n \"description\": \"Host to connect to for the storage backend.\",\n \"type\": \"string\"\n },\n \"maxBackupAge\": {\n \"default\": 0,\n \"description\": \"Maximum backup age that the purge process should observe.\",\n \"type\": \"integer\"\n },\n \"maxBackupCount\": {\n \"default\": 0,\n \"description\": \"Maximum number of backups to keep (used by the purge process).\\nDefault is unlimited.\",\n \"type\": \"integer\"\n },\n \"multiPartUploadThreshold\": {\n \"default\": 104857600,\n \"description\": \"File size over which cloud specific cli tools are used for transfer.\\nDefaults to 100 MB.\",\n \"type\": \"integer\"\n },\n \"podStorage\": {\n \"description\": \"Pod storage settings for the local storage provider\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"Pod local storage access modes\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"10Gi\",\n \"description\": \"Size of the pod's storage in bytes.\\nDefaults to 10 GB.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Storage class name to use for the pod's storage.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port to connect to for the storage backend.\",\n \"type\": \"integer\"\n },\n \"prefix\": {\n \"description\": \"Name of the top level folder in the backup bucket.\\nIf empty, the cluster name will be used.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"Region of the storage bucket.\\nDefaults to \\\"default\\\".\",\n \"type\": \"string\"\n },\n \"secure\": {\n \"description\": \"Whether to use SSL for the storage backend.\",\n \"type\": \"boolean\"\n },\n \"sslVerify\": {\n \"description\": \"When using SSL, whether to also verify the certificate.\",\n \"type\": \"boolean\"\n },\n \"storageProvider\": {\n \"description\": \"The storage backend to use for the backups.\",\n \"enum\": [\n \"google_storage\",\n \"azure_blobs\",\n \"s3\",\n \"s3_compatible\",\n \"s3_rgw\",\n \"ibm_storage\"\n ],\n \"type\": \"string\"\n },\n \"storageSecretRef\": {\n \"description\": \"Kubernetes Secret that stores the key file for the storage provider's API.\\nIf using 'local' storage, this value is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"transferMaxBandwidth\": {\n \"default\": \"50MB/s\",\n \"description\": \"Max upload bandwidth in MB/s.\\nDefaults to 50 MB/s.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"reaper\": {\n \"description\": \"Reaper defines the desired deployment characteristics for Reaper in this K8ssandraCluster.\\nIf this is non-nil, Reaper might be deployed on every Cassandra datacenter in this K8ssandraCluster, unless\\nthere is a Control Plane Reaper present. In that case, the K8ssandraCluster will get registered to it.\",\n \"properties\": {\n \"ServiceAccountName\": {\n \"default\": \"default\",\n \"type\": \"string\"\n },\n \"affinity\": {\n \"description\": \"Affinity applied to the Reaper pods.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoScheduling\": {\n \"description\": \"Auto scheduling properties. When you enable the auto-schedule feature, Reaper dynamically schedules repairs for\\nall non-system keyspaces in a cluster. A cluster's keyspaces are monitored and any modifications (additions or\\nremovals) are detected. When a new keyspace is created, a new repair schedule is created automatically for that\\nkeyspace. Conversely, when a keyspace is removed, the corresponding repair schedule is deleted.\",\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"excludedClusters\": {\n \"description\": \"ExcludedClusters are the clusters that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludedKeyspaces\": {\n \"description\": \"ExcludedKeyspaces are the keyspaces that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"initialDelayPeriod\": {\n \"default\": \"PT15S\",\n \"description\": \"InitialDelay is the amount of delay time before the schedule period starts. Must be a valid ISO-8601 duration\\nstring. The default is \\\"PT15S\\\" (15 seconds).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"percentUnrepairedThreshold\": {\n \"default\": 10,\n \"description\": \"PercentUnrepairedThreshold is the percentage of unrepaired data over which an incremental repair should be\\nstarted. Only relevant when using repair type INCREMENTAL.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"periodBetweenPolls\": {\n \"default\": \"PT10M\",\n \"description\": \"PeriodBetweenPolls is the interval time to wait before checking whether to start a repair task. Must be a valid\\nISO-8601 duration string. The default is \\\"PT10M\\\" (10 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"repairType\": {\n \"default\": \"AUTO\",\n \"description\": \"RepairType is the type of repair to create:\\n- REGULAR creates a regular repair (non-adaptive and non-incremental);\\n- ADAPTIVE creates an adaptive repair; adaptive repairs are most suited for Cassandra 3.\\n- INCREMENTAL creates an incremental repair; incremental repairs should only be used with Cassandra 4+.\\n- AUTO chooses between ADAPTIVE and INCREMENTAL depending on the Cassandra server version; ADAPTIVE for Cassandra\\n3 and INCREMENTAL for Cassandra 4+.\",\n \"enum\": [\n \"REGULAR\",\n \"ADAPTIVE\",\n \"INCREMENTAL\",\n \"AUTO\"\n ],\n \"type\": \"string\"\n },\n \"scheduleSpreadPeriod\": {\n \"default\": \"PT6H\",\n \"description\": \"ScheduleSpreadPeriod is the time spacing between each of the repair schedules that is to be carried out. Must be\\na valid ISO-8601 duration string. The default is \\\"PT6H\\\" (6 hours).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"timeBeforeFirstSchedule\": {\n \"default\": \"PT5M\",\n \"description\": \"TimeBeforeFirstSchedule is the grace period before the first repair in the schedule is started. Must be a valid\\nISO-8601 duration string. The default is \\\"PT5M\\\" (5 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Reaper will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Reaper instance, so that it can authenticate against nodes in the datacenter using CQL. If CQL\\nauthentication is not required, leave this field empty. The secret must be in the same namespace as Reaper itself\\nand must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"name\": \"cassandra-reaper\",\n \"repository\": \"thelastpickle\",\n \"tag\": \"3.6.1\"\n },\n \"description\": \"The image to use for the Reaper pod main container.\\nThe default is \\\"thelastpickle/cassandra-reaper:3.6.1\\\".\\nTODO: update with real release version.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"deploymentMode\": {\n \"default\": \"PER_DC\",\n \"enum\": [\n \"PER_DC\",\n \"SINGLE\",\n \"CONTROL_PLANE\"\n ],\n \"type\": \"string\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"2Gi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Reaper.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"httpManagement\": {\n \"default\": {\n \"enabled\": false\n },\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enable/disable the HTTP management connection between Reaper and Cassandra.\\nWhen enabled, HTTP will be used instead of JMX for management connectivity between Cassandra\\nand Reaper. In future, this will be true by default\",\n \"type\": \"boolean\"\n },\n \"keystores\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerImage\": {\n \"description\": \"Deprecated: The main container image will be used for the init container as well.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"Init Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerSecurityContext\": {\n \"description\": \"InitContainerSecurityContext is the SecurityContext applied to the Reaper init container, used to perform schema\\nmigrations.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jmxUserSecretRef\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. Reaper will use cassandraUsefSecretRef for authentication,\\nthis field is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keyspace\": {\n \"default\": \"reaper_db\",\n \"description\": \"The keyspace to use to store Reaper's state. Will default to \\\"reaper_db\\\" if unspecified. Will be created if it\\ndoes not exist, and if this Reaper resource is managed by K8ssandra.\",\n \"type\": \"string\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Reaper liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Reaper resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext contains a pod-level SecurityContext to apply to Reaper pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Reaper readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"reaperRef\": {\n \"description\": \"When there is a CONTROL_PLANE Reaper out there, this field allows registering a K8ssandra cluster to it.\\nPopulating this field disables some operator behaviour related to setting Reaper up.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Main Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Reaper main container.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageConfig\": {\n \"description\": \"If StorageType is \\\"local\\\", Reaper will need a Persistent Volume to persist its data. This field allows\\nconfiguring that Persistent Volume.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageType\": {\n \"default\": \"cassandra\",\n \"description\": \"The storage backend to store Reaper's data. Defaults to \\\"cassandra\\\" which causes Reaper to be stateless and store\\nits state to a Cassandra cluster it repairs (implying there must be one Reaper for each Cassandra cluster).\\nThe \\\"local\\\" option makes Reaper to store its state locally, allowing a single Reaper to repair several clusters.\",\n \"enum\": [\n \"cassandra\",\n \"local\"\n ],\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Reaper pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Reaper pods.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uiUserSecretRef\": {\n \"description\": \"Defines the secret which contains the username and password for the Reaper UI and REST API authentication. When UiUserSecretRef.Name == \\\"\\\", authentication is turned off in the front-end only.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend (e.g. vault). This moves the responsibility of generating and\\nstoring secrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"stargate\": {\n \"description\": \"Stargate defines the desired deployment characteristics for Stargate in this K8ssandraCluster.\\nIf this is non-nil, Stargate will be deployed on every Cassandra datacenter in this K8ssandraCluster.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"size\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"K8ssandra Cluster\",\n \"type\": \"object\"\n}", + "version": "k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "K8ssandra Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json new file mode 100644 index 00000000000..d1db2504222 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/K8ssandraTask.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "K8ssandraTask", + "schema": "{\n \"description\": \"K8ssandraTask is the Schema for the k8ssandratasks API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"K8ssandraTaskSpec defines the desired state of K8ssandraTask\",\n \"properties\": {\n \"cluster\": {\n \"description\": \"Which K8ssandraCluster this task is operating on.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"API version of the referent.\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"If referring to a piece of an object instead of an entire object, this string\\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\\nFor example, if the object reference is to a container within a pod, this would take on a value like:\\n\\\"spec.containers{name}\\\" (where \\\"name\\\" refers to the name of the container that triggered\\nthe event) or if no container name is specified \\\"spec.containers[2]\\\" (container with\\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\\nreferencing a part of an object.\\nTODO: this design is not final and this field is subject to change in the future.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind of the referent.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\",\n \"type\": \"string\"\n },\n \"resourceVersion\": {\n \"description\": \"Specific resourceVersion to which this reference is made, if any.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\",\n \"type\": \"string\"\n },\n \"uid\": {\n \"description\": \"UID of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"datacenters\": {\n \"description\": \"The names of the targeted datacenters. If omitted, will default to all DCs in spec order.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dcConcurrencyPolicy\": {\n \"description\": \"How to handle concurrency across DCs. Valid values are:\\n- \\\"Forbid\\\" (default): sequential processing. The K8ssandraTask only spawns one CassandraTask at a time, which\\n must run to completion before the CassandraTask for the next DC is created. If any CassandraTask fails, the\\n K8ssandraTask is marked as failed, and the remaining CassandraTasks are cancelled (i.e. never created).\\n- \\\"Allow\\\": parallel processing. The K8ssandraTask spawns all CassandraTasks at once. If any CassandraTask fails,\\n the K8ssandraTask is marked as failed, but the remaining CassandraTasks finish running.\",\n \"type\": \"string\"\n },\n \"template\": {\n \"description\": \"The characteristics of the CassandraTask that will get created for each DC.\",\n \"properties\": {\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this task can be run concurrently with other active tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"jobs\": {\n \"description\": \"Jobs defines the jobs this task will execute (and their order)\",\n \"items\": {\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments are additional parameters for the command\",\n \"properties\": {\n \"end_token\": {\n \"type\": \"string\"\n },\n \"jobs\": {\n \"type\": \"integer\"\n },\n \"keyspace_name\": {\n \"type\": \"string\"\n },\n \"new_tokens\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NewTokens is a map of pod names to their newly-assigned tokens. Required for the move\\ncommand, ignored otherwise. Pods referenced in this map must exist; any existing pod not\\nreferenced in this map will not be moved.\",\n \"type\": \"object\"\n },\n \"no_snapshot\": {\n \"type\": \"boolean\"\n },\n \"no_validate\": {\n \"description\": \"Scrub arguments\",\n \"type\": \"boolean\"\n },\n \"pod_name\": {\n \"type\": \"string\"\n },\n \"rack\": {\n \"type\": \"string\"\n },\n \"skip_corrupted\": {\n \"type\": \"boolean\"\n },\n \"source_datacenter\": {\n \"type\": \"string\"\n },\n \"split_output\": {\n \"description\": \"Compaction arguments\",\n \"type\": \"boolean\"\n },\n \"start_token\": {\n \"type\": \"string\"\n },\n \"tables\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"command\": {\n \"description\": \"Command defines what is run against Cassandra pods\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"command\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy indicates the behavior n case of failure. Default is Never.\",\n \"type\": \"string\"\n },\n \"scheduledTime\": {\n \"description\": \"ScheduledTime indicates the earliest possible time this task is executed. This does not necessarily\\nequal to the time it is actually executed (if other tasks are blocking for example). If not set,\\nthe task will be executed immediately.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"ttlSecondsAfterFinished\": {\n \"description\": \"TTLSecondsAfterFinished defines how long the completed job will kept before being cleaned up. If set to 0\\nthe task will not be cleaned up by the cass-operator. If unset, the default time (86400s) is used.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"K8ssandra Task\",\n \"type\": \"object\"\n}", + "version": "control.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "K8ssandra Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json new file mode 100644 index 00000000000..0bd2f4d1146 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackup.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackup", + "schema": "{\n \"description\": \"MedusaBackup is the Schema for the medusabackups API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupSpec defines the desired state of MedusaBackup\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json new file mode 100644 index 00000000000..cbd6efbe806 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupJob.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackupJob", + "schema": "{\n \"description\": \"MedusaBackupJob is the Schema for the medusabackupjobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupJobSpec defines the desired state of MedusaBackupJob\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup Job\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup Job", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json new file mode 100644 index 00000000000..e7b54fd05f5 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaBackupSchedule.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaBackupSchedule", + "schema": "{\n \"description\": \"MedusaBackupSchedule is the Schema for the medusabackupschedules API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaBackupScheduleSpec defines the desired state of MedusaBackupSchedule\",\n \"properties\": {\n \"backupSpec\": {\n \"description\": \"BackupSpec defines the MedusaBackup to be created for this job\",\n \"properties\": {\n \"backupType\": {\n \"default\": \"differential\",\n \"description\": \"The type of the backup: \\\"full\\\" or \\\"differential\\\"\",\n \"enum\": [\n \"differential\",\n \"full\"\n ],\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to back up\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n },\n \"concurrencyPolicy\": {\n \"description\": \"Specifics if this backup task can be run concurrently with other active backup tasks. Valid values are:\\n- \\\"Allow\\\": allows multiple Tasks to run concurrently on Cassandra cluster\\n- \\\"Forbid\\\" (default): only a single task is executed at once\\nThe \\\"Allow\\\" property is only valid if all the other active Tasks have \\\"Allow\\\" as well.\",\n \"type\": \"string\"\n },\n \"cronSchedule\": {\n \"description\": \"CronSchedule is a cronjob format schedule for backups. Overrides any easier methods of defining the schedule\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"disabled\": {\n \"description\": \"Disabled if set ensures this job is not scheduling anything\",\n \"type\": \"boolean\"\n },\n \"operationType\": {\n \"default\": \"backup\",\n \"description\": \"Specifies the type of operation to be performed\",\n \"enum\": [\n \"backup\",\n \"purge\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backupSpec\",\n \"cronSchedule\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Backup Schedule\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Backup Schedule", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json new file mode 100644 index 00000000000..40d34ea9801 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaConfiguration.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaConfiguration", + "schema": "{\n \"description\": \"MedusaConfiguration is the Schema for the medusaconfigurations API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaConfigurationSpec defines the desired state of MedusaConfiguration\",\n \"properties\": {\n \"storageProperties\": {\n \"description\": \"StorageProperties defines the storage backend settings to use for the backups.\",\n \"properties\": {\n \"apiProfile\": {\n \"description\": \"AWS Profile to use for authentication.\",\n \"type\": \"string\"\n },\n \"backupGracePeriodInDays\": {\n \"description\": \"Age after which orphan sstables can be deleted from the storage backend.\\nProtects from race conditions between purge and ongoing backups.\\nDefaults to 10 days.\",\n \"type\": \"integer\"\n },\n \"bucketName\": {\n \"description\": \"The name of the bucket to use for the backups.\",\n \"type\": \"string\"\n },\n \"concurrentTransfers\": {\n \"default\": 0,\n \"description\": \"Number of concurrent uploads.\\nHelps maximizing the speed of uploads but puts more pressure on the network.\\nDefaults to 0.\",\n \"type\": \"integer\"\n },\n \"credentialsType\": {\n \"description\": \"Type of credentials to use for authentication.\\nCan be \\\"role-based\\\", \\\"credential-based\\\" or empty.\",\n \"enum\": [\n \"role-based\",\n \"credential-based\"\n ],\n \"type\": \"string\"\n },\n \"host\": {\n \"description\": \"Host to connect to for the storage backend.\",\n \"type\": \"string\"\n },\n \"maxBackupAge\": {\n \"default\": 0,\n \"description\": \"Maximum backup age that the purge process should observe.\",\n \"type\": \"integer\"\n },\n \"maxBackupCount\": {\n \"default\": 0,\n \"description\": \"Maximum number of backups to keep (used by the purge process).\\nDefault is unlimited.\",\n \"type\": \"integer\"\n },\n \"multiPartUploadThreshold\": {\n \"default\": 104857600,\n \"description\": \"File size over which cloud specific cli tools are used for transfer.\\nDefaults to 100 MB.\",\n \"type\": \"integer\"\n },\n \"podStorage\": {\n \"description\": \"Pod storage settings for the local storage provider\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"Pod local storage access modes\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"size\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"10Gi\",\n \"description\": \"Size of the pod's storage in bytes.\\nDefaults to 10 GB.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"storageClassName\": {\n \"description\": \"Storage class name to use for the pod's storage.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port to connect to for the storage backend.\",\n \"type\": \"integer\"\n },\n \"prefix\": {\n \"description\": \"Name of the top level folder in the backup bucket.\\nIf empty, the cluster name will be used.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"Region of the storage bucket.\\nDefaults to \\\"default\\\".\",\n \"type\": \"string\"\n },\n \"secure\": {\n \"description\": \"Whether to use SSL for the storage backend.\",\n \"type\": \"boolean\"\n },\n \"sslVerify\": {\n \"description\": \"When using SSL, whether to also verify the certificate.\",\n \"type\": \"boolean\"\n },\n \"storageProvider\": {\n \"description\": \"The storage backend to use for the backups.\",\n \"enum\": [\n \"google_storage\",\n \"azure_blobs\",\n \"s3\",\n \"s3_compatible\",\n \"s3_rgw\",\n \"ibm_storage\"\n ],\n \"type\": \"string\"\n },\n \"storageSecretRef\": {\n \"description\": \"Kubernetes Secret that stores the key file for the storage provider's API.\\nIf using 'local' storage, this value is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"transferMaxBandwidth\": {\n \"default\": \"50MB/s\",\n \"description\": \"Max upload bandwidth in MB/s.\\nDefaults to 50 MB/s.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Configuration\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Configuration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json new file mode 100644 index 00000000000..ff01495c1cd --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaRestoreJob.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaRestoreJob", + "schema": "{\n \"description\": \"MedusaRestoreJob is the Schema for the medusarestorejobs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaRestoreJobSpec defines the desired state of MedusaRestoreJob\",\n \"properties\": {\n \"backup\": {\n \"description\": \"The name of the MedusaBackup to restore.\",\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"Name of the Cassandra datacenter to perform the restore on.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backup\",\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Restore Job\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Restore Job", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json new file mode 100644 index 00000000000..0d916b4a88c --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/MedusaTask.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MedusaTask", + "schema": "{\n \"description\": \"MedusaTask is the Schema for the MedusaTasks API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MedusaTaskSpec defines the desired state of MedusaTask\",\n \"properties\": {\n \"backupName\": {\n \"description\": \"Name of the backup.\\nWill be necessary for operations such as verify or status.\",\n \"type\": \"string\"\n },\n \"cassandraDatacenter\": {\n \"description\": \"The name of the CassandraDatacenter to run the task on\",\n \"type\": \"string\"\n },\n \"operation\": {\n \"description\": \"Requested operation to perform.\",\n \"enum\": [\n \"sync\",\n \"purge\",\n \"prepare_restore\"\n ],\n \"type\": \"string\"\n },\n \"restoreKey\": {\n \"description\": \"Restore key to use for the prepare_restore operation.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cassandraDatacenter\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Medusa Task\",\n \"type\": \"object\"\n}", + "version": "medusa.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Medusa Task", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json new file mode 100644 index 00000000000..66bfb82a0a0 --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Reaper.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Reaper", + "schema": "{\n \"description\": \"Reaper is the Schema for the reapers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ReaperSpec defines the desired state of Reaper\",\n \"properties\": {\n \"ServiceAccountName\": {\n \"default\": \"default\",\n \"type\": \"string\"\n },\n \"affinity\": {\n \"description\": \"Affinity applied to the Reaper pods.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"autoScheduling\": {\n \"description\": \"Auto scheduling properties. When you enable the auto-schedule feature, Reaper dynamically schedules repairs for\\nall non-system keyspaces in a cluster. A cluster's keyspaces are monitored and any modifications (additions or\\nremovals) are detected. When a new keyspace is created, a new repair schedule is created automatically for that\\nkeyspace. Conversely, when a keyspace is removed, the corresponding repair schedule is deleted.\",\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"excludedClusters\": {\n \"description\": \"ExcludedClusters are the clusters that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"excludedKeyspaces\": {\n \"description\": \"ExcludedKeyspaces are the keyspaces that are to be excluded from the repair schedule.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"initialDelayPeriod\": {\n \"default\": \"PT15S\",\n \"description\": \"InitialDelay is the amount of delay time before the schedule period starts. Must be a valid ISO-8601 duration\\nstring. The default is \\\"PT15S\\\" (15 seconds).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"percentUnrepairedThreshold\": {\n \"default\": 10,\n \"description\": \"PercentUnrepairedThreshold is the percentage of unrepaired data over which an incremental repair should be\\nstarted. Only relevant when using repair type INCREMENTAL.\",\n \"maximum\": 100,\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"periodBetweenPolls\": {\n \"default\": \"PT10M\",\n \"description\": \"PeriodBetweenPolls is the interval time to wait before checking whether to start a repair task. Must be a valid\\nISO-8601 duration string. The default is \\\"PT10M\\\" (10 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"repairType\": {\n \"default\": \"AUTO\",\n \"description\": \"RepairType is the type of repair to create:\\n- REGULAR creates a regular repair (non-adaptive and non-incremental);\\n- ADAPTIVE creates an adaptive repair; adaptive repairs are most suited for Cassandra 3.\\n- INCREMENTAL creates an incremental repair; incremental repairs should only be used with Cassandra 4+.\\n- AUTO chooses between ADAPTIVE and INCREMENTAL depending on the Cassandra server version; ADAPTIVE for Cassandra\\n3 and INCREMENTAL for Cassandra 4+.\",\n \"enum\": [\n \"REGULAR\",\n \"ADAPTIVE\",\n \"INCREMENTAL\",\n \"AUTO\"\n ],\n \"type\": \"string\"\n },\n \"scheduleSpreadPeriod\": {\n \"default\": \"PT6H\",\n \"description\": \"ScheduleSpreadPeriod is the time spacing between each of the repair schedules that is to be carried out. Must be\\na valid ISO-8601 duration string. The default is \\\"PT6H\\\" (6 hours).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n },\n \"timeBeforeFirstSchedule\": {\n \"default\": \"PT5M\",\n \"description\": \"TimeBeforeFirstSchedule is the grace period before the first repair in the schedule is started. Must be a valid\\nISO-8601 duration string. The default is \\\"PT5M\\\" (5 minutes).\",\n \"pattern\": \"([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraUserSecretRef\": {\n \"description\": \"Defines the username and password that Reaper will use to authenticate CQL connections to Cassandra clusters.\\nThese credentials will be automatically turned into CQL roles by cass-operator when bootstrapping the datacenter,\\nthen passed to the Reaper instance, so that it can authenticate against nodes in the datacenter using CQL. If CQL\\nauthentication is not required, leave this field empty. The secret must be in the same namespace as Reaper itself\\nand must contain two keys: \\\"username\\\" and \\\"password\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"containerImage\": {\n \"default\": {\n \"name\": \"cassandra-reaper\",\n \"repository\": \"thelastpickle\",\n \"tag\": \"3.6.1\"\n },\n \"description\": \"The image to use for the Reaper pod main container.\\nThe default is \\\"thelastpickle/cassandra-reaper:3.6.1\\\".\\nTODO: update with real release version.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"datacenterAvailability\": {\n \"default\": \"ALL\",\n \"description\": \"DatacenterAvailability indicates to Reaper its deployment in relation to the target datacenter's network.\\nFor single-DC clusters, the default (ALL) is fine. For multi-DC clusters, it is recommended to use EACH,\\nprovided that there is one Reaper instance managing each DC in the cluster; otherwise, if one single Reaper\\ninstance is going to manage more than one DC in the cluster, use ALL.\\nSee https://cassandra-reaper.io/docs/usage/multi_dc/.\",\n \"enum\": [\n \"LOCAL\",\n \"ALL\",\n \"EACH\"\n ],\n \"type\": \"string\"\n },\n \"datacenterRef\": {\n \"description\": \"DatacenterRef is the reference of a CassandraDatacenter resource that this Reaper instance should manage. It will\\nalso be used as the backend for persisting Reaper's state. Reaper must be able to access the JMX port (7199 by\\ndefault) and the CQL port (9042 by default) on this DC.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The datacenter name.\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"The datacenter namespace. If empty, the datacenter will be assumed to reside in the same namespace as the Reaper\\ninstance.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"2Gi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Reaper.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"httpManagement\": {\n \"default\": {\n \"enabled\": false\n },\n \"properties\": {\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enable/disable the HTTP management connection between Reaper and Cassandra.\\nWhen enabled, HTTP will be used instead of JMX for management connectivity between Cassandra\\nand Reaper. In future, this will be true by default\",\n \"type\": \"boolean\"\n },\n \"keystores\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerImage\": {\n \"description\": \"Deprecated: The main container image will be used for the init container as well.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerResources\": {\n \"description\": \"Init Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainerSecurityContext\": {\n \"description\": \"InitContainerSecurityContext is the SecurityContext applied to the Reaper init container, used to perform schema\\nmigrations.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"jmxUserSecretRef\": {\n \"description\": \"Deprecated: JMX security is now based on CQL roles. Reaper will use cassandraUsefSecretRef for authentication,\\nthis field is ignored.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keyspace\": {\n \"default\": \"reaper_db\",\n \"description\": \"The keyspace to use to store Reaper's state. Will default to \\\"reaper_db\\\" if unspecified. Will be created if it\\ndoes not exist, and if this Reaper resource is managed by K8ssandra.\",\n \"type\": \"string\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Reaper liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Reaper resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podSecurityContext\": {\n \"description\": \"PodSecurityContext contains a pod-level SecurityContext to apply to Reaper pods.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\\nSome volume types allow the Kubelet to change the ownership of that volume\\nto be owned by the pod:\\n\\n\\n1. The owning GID will be the FSGroup\\n2. The setgid bit is set (new files created in the volume will be owned by FSGroup)\\n3. The permission bits are OR'd with rw-rw----\\n\\n\\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume\\nbefore being exposed inside Pod. This field will only apply to\\nvolume types which support fsGroup based ownership(and permissions).\\nIt will have no effect on ephemeral volume types such as: secret, configmaps\\nand emptydir.\\nValid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in SecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence\\nfor that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in SecurityContext. If set in\\nboth SecurityContext and PodSecurityContext, the value specified in SecurityContext\\ntakes precedence for that container.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition\\nto the container's primary GID, the fsGroup (if specified), and group memberships\\ndefined in the container image for the uid of the container process. If unspecified,\\nno additional groups are added to any container. Note that group memberships\\ndefined in the container image for the uid of the container process are still effective,\\neven if they are not included in this list.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported\\nsysctls (by the container runtime) might fail to launch.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options within a container's SecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Reaper readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Main Container resources.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext applied to the Reaper main container.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more\\nprivileges than its parent process. This bool directly controls if\\nthe no_new_privs flag will be set on the container process.\\nAllowPrivilegeEscalation is true always when the container is:\\n1) run as Privileged\\n2) has CAP_SYS_ADMIN\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers.\\nDefaults to the default set of capabilities granted by the container runtime.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode.\\nProcesses in privileged containers are essentially equivalent to root on the host.\\nDefaults to false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers.\\nThe default is DefaultProcMount which uses the container runtime defaults for\\nreadonly paths and masked paths.\\nThis requires the ProcMountType feature flag to be enabled.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem.\\nDefault is false.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\\nUses runtime default if unset.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user.\\nIf true, the Kubelet will validate the image at runtime to ensure that it\\ndoes not run as UID 0 (root) and fail to start the container if it does.\\nIf unset or false, no such validation will be performed.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\\nDefaults to user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container.\\nIf unspecified, the container runtime will allocate a random SELinux context for each\\ncontainer. May also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are\\nprovided at both the pod \\u0026 container level, the container options\\noverride the pod options.\\nNote that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used.\\nThe profile must be preconfigured on the node to work.\\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\\nMust be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied.\\nValid options are:\\n\\n\\nLocalhost - a profile defined in a file on the node should be used.\\nRuntimeDefault - the container runtime default profile should be used.\\nUnconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers.\\nIf unspecified, the options from the PodSecurityContext will be used.\\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\\nNote that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook\\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\\nGMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container.\\nAll of a Pod's containers must have the same effective HostProcess value\\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process.\\nDefaults to the user specified in image metadata if unspecified.\\nMay also be set in PodSecurityContext. If set in both SecurityContext and\\nPodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"skipSchemaMigration\": {\n \"default\": false,\n \"description\": \"Whether to skip schema migration. Schema migration is done in an init container on every Reaper deployment and\\ncan slow down Reaper's startup time. Besides, schema migration requires reading data at QUORUM. It can be skipped\\nif you know that the schema is already up-to-date, or if you know upfront that QUORUM cannot be achieved (for\\nexample, because a DC is down).\",\n \"type\": \"boolean\"\n },\n \"storageConfig\": {\n \"description\": \"If StorageType is \\\"local\\\", Reaper will need a Persistent Volume to persist its data. This field allows\\nconfiguring that Persistent Volume.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#volumeattributesclass\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageType\": {\n \"default\": \"cassandra\",\n \"description\": \"The storage backend to store Reaper's data. Defaults to \\\"cassandra\\\" which causes Reaper to be stateless and store\\nits state to a Cassandra cluster it repairs (implying there must be one Reaper for each Cassandra cluster).\\nThe \\\"local\\\" option makes Reaper to store its state locally, allowing a single Reaper to repair several clusters.\",\n \"enum\": [\n \"cassandra\",\n \"local\"\n ],\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Reaper pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations applied to the Reaper pods.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"uiUserSecretRef\": {\n \"description\": \"Defines the secret which contains the username and password for the Reaper UI and REST API authentication. When UiUserSecretRef.Name == \\\"\\\", authentication is turned off in the front-end only.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Reaper\",\n \"type\": \"object\"\n}", + "version": "reaper.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Reaper", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json new file mode 100644 index 00000000000..f1bc092b8db --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/ReplicatedSecret.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ReplicatedSecret", + "schema": "{\n \"description\": \"ReplicatedSecret is the Schema for the replicatedsecrets API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ReplicatedSecretSpec defines the desired state of ReplicatedSecret\",\n \"properties\": {\n \"replicationTargets\": {\n \"description\": \"TargetContexts indicates the target clusters to which the secrets are replicated to. If empty, no clusters are targeted\",\n \"items\": {\n \"properties\": {\n \"addLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"AddLabels adds labels to the target secret.\",\n \"type\": \"object\"\n },\n \"dropLabels\": {\n \"description\": \"DropLabels defines the labels to be dropped from the secret before replication, this is sometimes neccessary to avoid infinite replication.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"k8sContextName\": {\n \"description\": \"K8sContextName defines the target cluster name as set in the ClientConfig. If left empty, current cluster is assumed\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"TODO Implement at some point\\nNamespace to replicate the data to in the target cluster. If left empty, current namespace is used.\",\n \"type\": \"string\"\n },\n \"targetPrefix\": {\n \"description\": \"TargetPrefix is the prefix to be used for the replicated secret in the target cluster. If left empty, the same name is used\\nas the original secret.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Selector defines which secrets are replicated. If left empty, all the secrets are replicated\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Replicated Secret\",\n \"type\": \"object\"\n}", + "version": "replication.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Replicated Secret", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json new file mode 100644 index 00000000000..3f5639189cc --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/components/Stargate.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Stargate", + "schema": "{\n \"description\": \"Stargate is the Schema for the stargates API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Specification of the desired behavior of this Stargate resource.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"auth\": {\n \"default\": true,\n \"description\": \"Whether to enable authentication for Stargate. The default is true; it is highly recommended to always leave\\nauthentication turned on, not only on Stargate nodes, but also on data nodes as well. Note that Stargate REST\\nAPIs are currently only accessible if authentication is enabled, and if the authenticator in use in the whole\\ncluster is PasswordAuthenticator. The usage of any other authenticator will cause the REST API to become\\ninaccessible, see https://github.com/stargate/stargate/issues/792 for more. Stargate CQL API however remains\\naccessible even if authentication is disabled in the cluster, or when a custom authenticator is being used.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"cassandraEncryption\": {\n \"description\": \"CassandraEncryption groups together encryption stores that are passed to the Stargate pods, so\\nthat they can be mounted as volumes.\",\n \"properties\": {\n \"clientEncryptionStores\": {\n \"description\": \"Client encryption stores which are used by Cassandra and Reaper.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n },\n \"serverEncryptionStores\": {\n \"description\": \"Internode encryption stores which are used by Cassandra and Stargate.\",\n \"properties\": {\n \"keystorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"keystoreSecretRef\": {\n \"description\": \"ref to the secret that contains the keystore and optionally its password (which can also be specified through\\nthe keystorePasswordSecretRef field)\\nif keys are not specified, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststorePasswordSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore password if password stored in different secret than keystoreSecretRef\\nif key isn't specified explicitly, \\\"truststore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"truststoreSecretRef\": {\n \"description\": \"ref to the secret that contains the truststore and optionally its password (which can also be specified through\\nthe truststorePasswordSecretRef field)\\nif keys are not specified explicitly, \\\"keystore\\\" entry and a \\\"keystore-password\\\" entry will be used\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the entry in the Secret resource's `data` field to be used.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"keystoreSecretRef\",\n \"truststoreSecretRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"datacenterRef\": {\n \"description\": \"DatacenterRef is the namespace-local reference of a CassandraDatacenter resource where\\nStargate should be deployed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"racks\": {\n \"description\": \"Racks allow customizing Stargate characteristics for specific racks in the datacenter.\",\n \"items\": {\n \"description\": \"StargateRackTemplate defines custom rules for Stargate pods in a given rack.\\nThese rules will be merged with rules defined at datacenter level in a StargateDatacenterTemplate; rack-level rules\\nhave precedence over datacenter-level ones.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the affinity to apply to all the Stargate pods.\\nLeave nil to let the controller reuse the same affinity rules used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0\\n(i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to an update), the system\\nmay or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of\\nthem are ANDed.\\nThe TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator\\nthat relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. If the operator is Gt or Lt, the values\\narray must have a single element, which will be interpreted as an integer.\\nThis array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy\\nthe anti-affinity expressions specified by this field, but it may choose\\na node that violates one or more of the expressions. The node that is\\nmost preferred is the one with the greatest sum of weights, i.e.\\nfor each node that meets all of the scheduling requirements (resource\\nrequest, requiredDuringScheduling anti-affinity expressions, etc.),\\ncompute a sum by iterating through the elements of this field and adding\\n\\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the\\nnode(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm,\\nin the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at\\nscheduling time, the pod will not be scheduled onto the node.\\nIf the anti-affinity requirements specified by this field cease to be met\\nat some point during pod execution (e.g. due to a pod label update), the\\nsystem may or may not try to eventually evict the pod from its node.\\nWhen there are multiple elements, the lists of nodes corresponding to each\\npodAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector\\nrelative to the given namespace(s)) that this pod should be\\nco-located (affinity) or not co-located (anti-affinity) with,\\nwhere co-located is defined as running on a node whose value of\\nthe label with key \\u003ctopologyKey\\u003e matches that of any node on which\\na pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\\nIf it's null, this PodAffinityTerm matches with no Pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MatchLabelKeys and LabelSelector.\\nAlso, MatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"mismatchLabelKeys\": {\n \"description\": \"MismatchLabelKeys is a set of pod label keys to select which pods will\\nbe taken into consideration. The keys are used to lookup values from the\\nincoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`\\nto select the group of existing pods which pods will be taken into consideration\\nfor the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming\\npod labels will be ignored. The default value is empty.\\nThe same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.\\nAlso, MismatchLabelKeys cannot be set when LabelSelector isn't set.\\nThis is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to.\\nThe term is applied to the union of the namespaces selected by this field\\nand the ones listed in the namespaces field.\\nnull selector and null or empty namespaces list means \\\"this pod's namespace\\\".\\nAn empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to.\\nThe term is applied to the union of the namespaces listed in this field\\nand the ones selected by namespaceSelector.\\nnull or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching\\nthe labelSelector in the specified namespaces, where co-located is defined as running on a node\\nwhose value of the label with key topologyKey matches that of any node on which any of the\\nselected pods is running.\\nEmpty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"allowStargateOnDataNodes\": {\n \"default\": false,\n \"description\": \"AllowStargateOnDataNodes allows Stargate pods to be scheduled on a worker node already hosting data pods for this\\ndatacenter. The default is false, which means that Stargate pods will be scheduled on separate worker nodes.\\nNote: if the datacenter pods have HostNetwork:true, then the Stargate pods will inherit of it, in which case it\\nis possible that Stargate nodes won't be allowed to sit on data nodes even if this property is set to true,\\nbecause of port conflicts on the same IP address.\",\n \"type\": \"boolean\"\n },\n \"authOptions\": {\n \"description\": \"Authentication options.\",\n \"properties\": {\n \"apiAuthMethod\": {\n \"default\": \"Table\",\n \"description\": \"The method to use for authenticating requests to the Stargate APIs. Stargate currently has\\ntwo authentication / authorization methods:\\n- Table: table-based;\\n- JWT: JSON web token (JWT)-based.\\nThe methods are mutually exclusive. The default method is Table.\",\n \"enum\": [\n \"Table\",\n \"JWT\"\n ],\n \"type\": \"string\"\n },\n \"providerUrl\": {\n \"description\": \"Required when using JWT authentication method, ignored otherwise.\",\n \"type\": \"string\"\n },\n \"tokenTtlSeconds\": {\n \"description\": \"The time-to-live in seconds of an API authentication token. Valid only for the Table\\nauthentication method. By default, the token persists for 30 minutes with a sliding window.\\nEach use of the token to authenticate resets the 30-minute window. A token created and used\\nafter 29 minutes will authenticate a request, but if 31 minutes passes before use, the token\\nwill no longer exist.\\nDefault is 1800 seconds (30 minutes).\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"cassandraConfigMapRef\": {\n \"description\": \"CassandraConfigMapRef is a reference to a ConfigMap that holds Cassandra configuration.\\nThe map should have a key named cassandra_yaml.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containerImage\": {\n \"default\": {\n \"repository\": \"stargateio\",\n \"tag\": \"v1.0.77\"\n },\n \"description\": \"ContainerImage is the image characteristics to use for Stargate containers. Leave nil\\nto use a default image.\",\n \"properties\": {\n \"name\": {\n \"description\": \"The image name to use.\",\n \"type\": \"string\"\n },\n \"pullPolicy\": {\n \"description\": \"The image pull policy to use. Defaults to \\\"Always\\\" if the tag is \\\"latest\\\", otherwise to \\\"IfNotPresent\\\".\",\n \"enum\": [\n \"Always\",\n \"IfNotPresent\",\n \"Never\"\n ],\n \"type\": \"string\"\n },\n \"pullSecretRef\": {\n \"description\": \"The secret to use when pulling the image from private repositories. If specified, this secret will be passed to\\nindividual puller implementations for them to use. For example, in the case of Docker, only DockerConfig type\\nsecrets are honored. More info:\\nhttps://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"registry\": {\n \"description\": \"The Docker registry to use. Defaults to \\\"docker.io\\\", the official Docker Hub.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"The Docker repository to use.\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"default\": \"latest\",\n \"description\": \"The image tag to use. Defaults to \\\"latest\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"heapSize\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"256Mi\",\n \"description\": \"HeapSize sets the JVM heap size to use for Stargate. If no Resources are specified, this\\nvalue will also be used to set a default memory request and limit for the Stargate pods:\\nthese will be set to HeapSize x2 and x4, respectively.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe sets the Stargate liveness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"metadata\": {\n \"description\": \"labels and annotations for Stargate resources\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"labels/annotations that will be applied to all components\\ncreated by the CRD\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"pods\": {\n \"description\": \"labels/annotations for the pod components\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"labels/annotations for the service component\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name is the rack name. It must correspond to an existing rack name in the CassandraDatacenter resource where\\nStargate is being deployed, otherwise it will be ignored.\",\n \"minLength\": 2,\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is an optional map of label keys and values to restrict the scheduling of Stargate nodes to workers\\nwith matching labels.\\nLeave nil to let the controller reuse the same node selectors used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector\",\n \"type\": \"object\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe sets the Stargate readiness probe. Leave nil to use defaults.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the\\ncommand is root ('/') in the container's filesystem. The command is simply exec'd, it is\\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\\na shell, you need to explicitly call out to that shell.\\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded.\\nDefaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest\\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\\n\\n\\nIf this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set\\n\\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name.\\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host.\\nDefaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe.\\nDefault to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed.\\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container.\\nNumber must be in the range 1 to 65535.\\nName must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\\nThe grace period is the duration in seconds after the processes running in the pod are sent\\na termination signal and the time when the processes are forcibly halted with a kill signal.\\nSet this value longer than the expected cleanup time for your process.\\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\\nvalue overrides the value provided by the pod spec.\\nValue must be non-negative integer. The value zero indicates stop immediately via\\nthe kill signal (no opportunity to shut down).\\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out.\\nDefaults to 1 second. Minimum value is 1.\\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the Kubernetes resource requests and limits to apply, per Stargate pod. Leave\\nnil to use defaults.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"secretsProvider\": {\n \"default\": \"internal\",\n \"description\": \"SecretsProvider defines whether the secrets used for credentials and certs will be backed\\nby an external secret backend. This moves the responsibility of generating and storing\\nsecrets from the operators to the user and will rely on a mutating webhook to inject\\nthe secrets into the necessary resources\",\n \"enum\": [\n \"internal\",\n \"external\"\n ],\n \"type\": \"string\"\n },\n \"serviceAccount\": {\n \"default\": \"default\",\n \"description\": \"ServiceAccount is the service account name to use for Stargate pods.\",\n \"type\": \"string\"\n },\n \"size\": {\n \"default\": 1,\n \"description\": \"Size is the number of Stargate instances to deploy in each datacenter. They will be spread evenly across racks.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"telemetry\": {\n \"description\": \"Telemetry defines the desired telemetry integrations to deploy targeting the Stargate pods for all DCs in this cluster\\n(unless overridden by DC specific settings)\",\n \"properties\": {\n \"cassandra\": {\n \"properties\": {\n \"endpoint\": {\n \"properties\": {\n \"address\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relabels\": {\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set, being applied to samples before ingestion.\\nIt defines `\\u003cmetric_relabel_configs\\u003e`-section of Prometheus configuration.\\nMore info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"mcac\": {\n \"properties\": {\n \"enabled\": {\n \"description\": \"enabled sets whether MCAC (legacy metrics endpoint) is enabled.\\nThis is considered true by default.\",\n \"type\": \"boolean\"\n },\n \"metricFilters\": {\n \"description\": \"MetricFilters allows passing filters to MCAC in order to reduce the amount of extracted metrics.\\nNot setting this field will result in the default filters being used:\\n- \\\"deny:org.apache.cassandra.metrics.Table\\\"\\n- \\\"deny:org.apache.cassandra.metrics.table\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_ss_table_count\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.LiveSSTableCount\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.live_disk_space_used\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.LiveDiskSpaceUsed\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Pending\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Memtable\\\"\\n- \\\"allow:org.apache.cassandra.metrics.Table.Compaction\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.read\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.write\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.range\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.coordinator\\\"\\n- \\\"allow:org.apache.cassandra.metrics.table.dropped_mutations\\\"\\nSetting it to an empty list will result in all metrics being extracted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"properties\": {\n \"commonLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"CommonLabels are applied to all serviceMonitors created.\",\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enable the creation of Prometheus serviceMonitors for this resource (Cassandra or Stargate).\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"vector\": {\n \"properties\": {\n \"components\": {\n \"properties\": {\n \"sinks\": {\n \"description\": \"Sinks is the list of sinks to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the sink.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the sink.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the sink.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sources\": {\n \"description\": \"Sources is the list of sources to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the source.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of the source.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"transforms\": {\n \"description\": \"Transforms is the list of transforms to use for the Vector agent.\",\n \"items\": {\n \"properties\": {\n \"config\": {\n \"description\": \"Config is the configuration for the transform.\",\n \"type\": \"string\"\n },\n \"inputs\": {\n \"description\": \"Inputs is the list of inputs for the transform.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name is the name of the transform.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is the type of the transform.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"enabled\": {\n \"description\": \"Enabled enables the Vector agent for this resource (Cassandra, Reaper or Stargate).\\nEnabling the vector agent will inject a sidecar container into the pod.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image is the name of the Vector image to use. If not set, the default image will be used.\\nkube:default=\\\"timberio/vector:0.26.0-alpine\\\"\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for the Vector agent.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval is the interval at which the Vector agent will scrape the metrics endpoint.\\nUse values like 30s, 1m, 5m.\\nkube:default=30s\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are tolerations to apply to the Stargate pods.\\nLeave nil to let the controller reuse the same tolerations used for data pods in this datacenter, if any.\\nSee https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"datacenterRef\",\n \"size\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Stargate\",\n \"type\": \"object\"\n}", + "version": "stargate.k8ssandra.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Stargate", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz" + }, + "model": { + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://helm.k8ssandra.io/stable/k8ssandra-operator-1.20.0-20240903195858-60a99490.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/model.json b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/model.json new file mode 100644 index 00000000000..735741a8a3e --- /dev/null +++ b/server/meshmodel/k8ssandra/1.20.0-20240903195858-60a99490/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "App Definition and Development" + }, + "displayName": "K8ssandra", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "1.20.0-20240903195858-60a99490" + }, + "name": "k8ssandra", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Database", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessAudit.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessAudit.json new file mode 100644 index 00000000000..e068be7c715 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessAudit.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AccessAudit", + "schema": "{\n \"description\": \"AccessAudit is the Schema for the accessaudit API\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Access Audit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Access Audit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRole.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRole.json new file mode 100644 index 00000000000..5d116c1ae12 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRole.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AccessRole", + "schema": "{\n \"description\": \"AccessRole is the Schema for the accessrole API\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Access Role\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Access Role", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRoleBinding.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRoleBinding.json new file mode 100644 index 00000000000..a22f069ec86 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/AccessRoleBinding.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AccessRoleBinding", + "schema": "{\n \"description\": \"AccessRoleBinding is the Schema for the accessrolebinding API\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Access Role Binding\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Access Role Binding", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/CircuitBreaker.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/CircuitBreaker.json new file mode 100644 index 00000000000..ec985bb038d --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/CircuitBreaker.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CircuitBreaker", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma CircuitBreaker resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Circuit Breaker\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Circuit Breaker", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003490", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ContainerPatch.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ContainerPatch.json new file mode 100644 index 00000000000..c174759ff37 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ContainerPatch.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ContainerPatch", + "schema": "{\n \"description\": \"ContainerPatch stores a list of patches to apply to init and sidecar containers.\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"ContainerPatchSpec specifies the options available for a ContainerPatch\",\n \"properties\": {\n \"initPatch\": {\n \"description\": \"InitPatch specifies jsonpatch to apply to an init container.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a string representing a valid json object used\\nby replace and add operations. String has to be escaped with \\\" to be valid a json object.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sidecarPatch\": {\n \"description\": \"SidecarPatch specifies jsonpatch to apply to a sidecar container.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a string representing a valid json object used\\nby replace and add operations. String has to be escaped with \\\" to be valid a json object.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Container Patch\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Container Patch", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003484", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Dataplane.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Dataplane.json new file mode 100644 index 00000000000..a8e5a0d3afb --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Dataplane.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Dataplane", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Dataplane resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Dataplane\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Dataplane", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003463", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/DataplaneInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/DataplaneInsight.json new file mode 100644 index 00000000000..692e01e8480 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/DataplaneInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DataplaneInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Dataplane Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Dataplane Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003478", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ExternalService.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ExternalService.json new file mode 100644 index 00000000000..26a33b9251a --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ExternalService.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ExternalService", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ExternalService resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"External Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "External Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003481", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/FaultInjection.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/FaultInjection.json new file mode 100644 index 00000000000..8d411160db3 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/FaultInjection.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FaultInjection", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma FaultInjection resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Fault Injection\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Fault Injection", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HealthCheck.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HealthCheck.json new file mode 100644 index 00000000000..82683745dbc --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HealthCheck.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HealthCheck", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma HealthCheck resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Health Check\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Health Check", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003485", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HostnameGenerator.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HostnameGenerator.json new file mode 100644 index 00000000000..bec16f42373 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/HostnameGenerator.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HostnameGenerator", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma HostnameGenerator resource.\",\n \"properties\": {\n \"selector\": {\n \"properties\": {\n \"meshExternalService\": {\n \"properties\": {\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"meshService\": {\n \"properties\": {\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Hostname Generator\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Hostname Generator", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Mesh.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Mesh.json new file mode 100644 index 00000000000..85afde1b9f7 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Mesh.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Mesh", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Mesh resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003497", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshAccessLog.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshAccessLog.json new file mode 100644 index 00000000000..c9607d5926c --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshAccessLog.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshAccessLog", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshAccessLog resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"backends\": {\n \"items\": {\n \"properties\": {\n \"file\": {\n \"description\": \"FileBackend defines configuration for file based access logs\",\n \"properties\": {\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"Path to a file that logs will be written to\",\n \"example\": \"/tmp/access.log\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"Defines an OpenTelemetry logging backend.\",\n \"properties\": {\n \"attributes\": {\n \"description\": \"Attributes can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": [\n {\n \"key\": \"mesh\",\n \"value\": \"%KUMA_MESH%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"body\": {\n \"description\": \"Body is a raw string or an OTLP any value as described at\\nhttps://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#field-body\\nIt can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": {\n \"kvlistValue\": {\n \"values\": [\n {\n \"key\": \"mesh\",\n \"value\": {\n \"stringValue\": \"%KUMA_MESH%\"\n }\n }\n ]\n }\n },\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"endpoint\": {\n \"description\": \"Endpoint of OpenTelemetry collector. An empty port defaults to 4317.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCPBackend defines a TCP logging backend.\",\n \"properties\": {\n \"address\": {\n \"description\": \"Address of the TCP logging backend\",\n \"example\": \"127.0.0.1:5000\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Tcp\",\n \"File\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"backends\": {\n \"items\": {\n \"properties\": {\n \"file\": {\n \"description\": \"FileBackend defines configuration for file based access logs\",\n \"properties\": {\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"Path to a file that logs will be written to\",\n \"example\": \"/tmp/access.log\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"Defines an OpenTelemetry logging backend.\",\n \"properties\": {\n \"attributes\": {\n \"description\": \"Attributes can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": [\n {\n \"key\": \"mesh\",\n \"value\": \"%KUMA_MESH%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"body\": {\n \"description\": \"Body is a raw string or an OTLP any value as described at\\nhttps://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#field-body\\nIt can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": {\n \"kvlistValue\": {\n \"values\": [\n {\n \"key\": \"mesh\",\n \"value\": {\n \"stringValue\": \"%KUMA_MESH%\"\n }\n }\n ]\n }\n },\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"endpoint\": {\n \"description\": \"Endpoint of OpenTelemetry collector. An empty port defaults to 4317.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCPBackend defines a TCP logging backend.\",\n \"properties\": {\n \"address\": {\n \"description\": \"Address of the TCP logging backend\",\n \"example\": \"127.0.0.1:5000\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Tcp\",\n \"File\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Access Log\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Access Log", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003477", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshCircuitBreaker.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshCircuitBreaker.json new file mode 100644 index 00000000000..9e53c83977c --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshCircuitBreaker.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshCircuitBreaker", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshCircuitBreaker resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'\",\n \"properties\": {\n \"connectionLimits\": {\n \"description\": \"ConnectionLimits contains configuration of each circuit breaking limit,\\nwhich when exceeded makes the circuit breaker to become open (no traffic\\nis allowed like no current is allowed in the circuits when physical\\ncircuit breaker ir open)\",\n \"properties\": {\n \"maxConnectionPools\": {\n \"description\": \"The maximum number of connection pools per cluster that are concurrently\\nsupported at once. Set this for clusters which create a large number of\\nconnection pools.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections allowed to be made to the upstream\\ncluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of pending requests that are allowed to the upstream\\ncluster. This limit is applied as a connection limit for non-HTTP\\ntraffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"description\": \"The maximum number of parallel requests that are allowed to be made\\nto the upstream cluster. This limit does not apply to non-HTTP traffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"description\": \"The maximum number of parallel retries that will be allowed to\\nthe upstream cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"outlierDetection\": {\n \"description\": \"OutlierDetection contains the configuration of the process of dynamically\\ndetermining whether some number of hosts in an upstream cluster are\\nperforming unlike the others and removing them from the healthy load\\nbalancing set. Performance might be along different axes such as\\nconsecutive failures, temporal success rate, temporal latency, etc.\\nOutlier detection is a form of passive health checking.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to\\nthe base time multiplied by the number of times the host has been\\nejected.\",\n \"type\": \"string\"\n },\n \"detectors\": {\n \"description\": \"Contains configuration for supported outlier detectors\",\n \"properties\": {\n \"failurePercentage\": {\n \"description\": \"Failure Percentage based outlier detection functions similarly to success\\nrate detection, in that it relies on success rate data from each host in\\na cluster. However, rather than compare those values to the mean success\\nrate of the cluster as a whole, they are compared to a flat\\nuser-configured threshold. This threshold is configured via the\\noutlierDetection.failurePercentageThreshold field.\\nThe other configuration fields for failure percentage based detection are\\nsimilar to the fields for success rate detection. As with success rate\\ndetection, detection will not be performed for a host if its request\\nvolume over the aggregation interval is less than the\\noutlierDetection.detectors.failurePercentage.requestVolume value.\\nDetection also will not be performed for a cluster if the number of hosts\\nwith the minimum required request volume in an interval is less than the\\noutlierDetection.detectors.failurePercentage.minimumHosts value.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The minimum number of hosts in a cluster in order to perform failure\\npercentage-based ejection. If the total number of hosts in the cluster is\\nless than this value, failure percentage-based ejection will not be\\nperformed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration above) to perform failure\\npercentage-based ejection for this host. If the volume is lower than this\\nsetting, failure percentage-based ejection will not be performed for this\\nhost.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"threshold\": {\n \"description\": \"The failure percentage to use when determining failure percentage-based\\noutlier detection. If the failure percentage of a given host is greater\\nthan or equal to this value, it will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"gatewayFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalLocalOriginErrors is\\nfalse) this detection type takes into account a subset of 5xx errors,\\ncalled \\\"gateway errors\\\" (502, 503 or 504 status code) and local origin\\nfailures, such as timeout, TCP reset etc.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account a subset of 5xx errors, called\\n\\\"gateway errors\\\" (502, 503 or 504 status code) and is supported only by\\nthe http router.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive gateway failures (502, 503, 504 status codes)\\nbefore a consecutive gateway failure ejection occurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localOriginFailures\": {\n \"description\": \"This detection type is enabled only when\\noutlierDetection.splitExternalLocalOriginErrors is true and takes into\\naccount only locally originated errors (timeout, reset, etc).\\nIf Envoy repeatedly cannot connect to an upstream host or communication\\nwith the upstream host is repeatedly interrupted, it will be ejected.\\nVarious locally originated problems are detected: timeout, TCP reset,\\nICMP errors, etc. This detection type is supported by http router and\\ntcp proxy.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive locally originated failures before ejection\\noccurs. Parameter takes effect only when splitExternalAndLocalErrors\\nis set to true.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"successRate\": {\n \"description\": \"Success Rate based outlier detection aggregates success rate data from\\nevery host in a cluster. Then at given intervals ejects hosts based on\\nstatistical outlier detection. Success Rate outlier detection will not be\\ncalculated for a host if its request volume over the aggregation interval\\nis less than the outlierDetection.detectors.successRate.requestVolume\\nvalue.\\nMoreover, detection will not be performed for a cluster if the number of\\nhosts with the minimum required request volume in an interval is less\\nthan the outlierDetection.detectors.successRate.minimumHosts value.\\nIn the default configuration mode\\n(outlierDetection.splitExternalLocalOriginErrors is false) this detection\\ntype takes into account all types of errors: locally and externally\\noriginated.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true),\\nlocally originated errors and externally originated (transaction) errors\\nare counted and treated separately.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The number of hosts in a cluster that must have enough request volume to\\ndetect success rate outliers. If the number of hosts is less than this\\nsetting, outlier detection via success rate statistics is not performed\\nfor any host in the cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration configured in\\noutlierDetection section) to include this host in success rate based\\noutlier detection. If the volume is lower than this setting, outlier\\ndetection via success rate statistics is not performed for that host.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"standardDeviationFactor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"This factor is used to determine the ejection threshold for success rate\\noutlier ejection. The ejection threshold is the difference between\\nthe mean success rate, and the product of this factor and the standard\\ndeviation of the mean success rate: mean - (standard_deviation *\\nsuccess_rate_standard_deviation_factor).\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"totalFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalAndLocalErrors is\\nfalse) this detection type takes into account all generated errors:\\nlocally originated and externally originated (transaction) errors.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account only externally originated\\n(transaction) errors, ignoring locally originated errors.\\nIf an upstream host is an HTTP-server, only 5xx types of error are taken\\ninto account (see Consecutive Gateway Failure for exceptions).\\nProperly formatted responses, even when they carry an operational error\\n(like index not found, access denied) are not taken into account.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive server-side error responses (for HTTP traffic,\\n5xx responses; for TCP traffic, connection failures; for Redis, failure\\nto respond PONG; etc.) before a consecutive total failure ejection\\noccurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"When set to true, outlierDetection configuration won't take any effect\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"The time interval between ejection analysis sweeps. This can result in\\nboth new ejections and hosts being returned to service.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier\\ndetection. Defaults to 10% but will eject at least one host regardless of\\nthe value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"splitExternalAndLocalErrors\": {\n \"description\": \"Determines whether to distinguish local origin failures from external\\nerrors. If set to true the following configuration parameters are taken\\ninto account: detectors.localOriginFailures.consecutive\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding\\nconfigurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'\",\n \"properties\": {\n \"connectionLimits\": {\n \"description\": \"ConnectionLimits contains configuration of each circuit breaking limit,\\nwhich when exceeded makes the circuit breaker to become open (no traffic\\nis allowed like no current is allowed in the circuits when physical\\ncircuit breaker ir open)\",\n \"properties\": {\n \"maxConnectionPools\": {\n \"description\": \"The maximum number of connection pools per cluster that are concurrently\\nsupported at once. Set this for clusters which create a large number of\\nconnection pools.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections allowed to be made to the upstream\\ncluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of pending requests that are allowed to the upstream\\ncluster. This limit is applied as a connection limit for non-HTTP\\ntraffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"description\": \"The maximum number of parallel requests that are allowed to be made\\nto the upstream cluster. This limit does not apply to non-HTTP traffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"description\": \"The maximum number of parallel retries that will be allowed to\\nthe upstream cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"outlierDetection\": {\n \"description\": \"OutlierDetection contains the configuration of the process of dynamically\\ndetermining whether some number of hosts in an upstream cluster are\\nperforming unlike the others and removing them from the healthy load\\nbalancing set. Performance might be along different axes such as\\nconsecutive failures, temporal success rate, temporal latency, etc.\\nOutlier detection is a form of passive health checking.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to\\nthe base time multiplied by the number of times the host has been\\nejected.\",\n \"type\": \"string\"\n },\n \"detectors\": {\n \"description\": \"Contains configuration for supported outlier detectors\",\n \"properties\": {\n \"failurePercentage\": {\n \"description\": \"Failure Percentage based outlier detection functions similarly to success\\nrate detection, in that it relies on success rate data from each host in\\na cluster. However, rather than compare those values to the mean success\\nrate of the cluster as a whole, they are compared to a flat\\nuser-configured threshold. This threshold is configured via the\\noutlierDetection.failurePercentageThreshold field.\\nThe other configuration fields for failure percentage based detection are\\nsimilar to the fields for success rate detection. As with success rate\\ndetection, detection will not be performed for a host if its request\\nvolume over the aggregation interval is less than the\\noutlierDetection.detectors.failurePercentage.requestVolume value.\\nDetection also will not be performed for a cluster if the number of hosts\\nwith the minimum required request volume in an interval is less than the\\noutlierDetection.detectors.failurePercentage.minimumHosts value.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The minimum number of hosts in a cluster in order to perform failure\\npercentage-based ejection. If the total number of hosts in the cluster is\\nless than this value, failure percentage-based ejection will not be\\nperformed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration above) to perform failure\\npercentage-based ejection for this host. If the volume is lower than this\\nsetting, failure percentage-based ejection will not be performed for this\\nhost.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"threshold\": {\n \"description\": \"The failure percentage to use when determining failure percentage-based\\noutlier detection. If the failure percentage of a given host is greater\\nthan or equal to this value, it will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"gatewayFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalLocalOriginErrors is\\nfalse) this detection type takes into account a subset of 5xx errors,\\ncalled \\\"gateway errors\\\" (502, 503 or 504 status code) and local origin\\nfailures, such as timeout, TCP reset etc.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account a subset of 5xx errors, called\\n\\\"gateway errors\\\" (502, 503 or 504 status code) and is supported only by\\nthe http router.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive gateway failures (502, 503, 504 status codes)\\nbefore a consecutive gateway failure ejection occurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localOriginFailures\": {\n \"description\": \"This detection type is enabled only when\\noutlierDetection.splitExternalLocalOriginErrors is true and takes into\\naccount only locally originated errors (timeout, reset, etc).\\nIf Envoy repeatedly cannot connect to an upstream host or communication\\nwith the upstream host is repeatedly interrupted, it will be ejected.\\nVarious locally originated problems are detected: timeout, TCP reset,\\nICMP errors, etc. This detection type is supported by http router and\\ntcp proxy.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive locally originated failures before ejection\\noccurs. Parameter takes effect only when splitExternalAndLocalErrors\\nis set to true.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"successRate\": {\n \"description\": \"Success Rate based outlier detection aggregates success rate data from\\nevery host in a cluster. Then at given intervals ejects hosts based on\\nstatistical outlier detection. Success Rate outlier detection will not be\\ncalculated for a host if its request volume over the aggregation interval\\nis less than the outlierDetection.detectors.successRate.requestVolume\\nvalue.\\nMoreover, detection will not be performed for a cluster if the number of\\nhosts with the minimum required request volume in an interval is less\\nthan the outlierDetection.detectors.successRate.minimumHosts value.\\nIn the default configuration mode\\n(outlierDetection.splitExternalLocalOriginErrors is false) this detection\\ntype takes into account all types of errors: locally and externally\\noriginated.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true),\\nlocally originated errors and externally originated (transaction) errors\\nare counted and treated separately.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The number of hosts in a cluster that must have enough request volume to\\ndetect success rate outliers. If the number of hosts is less than this\\nsetting, outlier detection via success rate statistics is not performed\\nfor any host in the cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration configured in\\noutlierDetection section) to include this host in success rate based\\noutlier detection. If the volume is lower than this setting, outlier\\ndetection via success rate statistics is not performed for that host.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"standardDeviationFactor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"This factor is used to determine the ejection threshold for success rate\\noutlier ejection. The ejection threshold is the difference between\\nthe mean success rate, and the product of this factor and the standard\\ndeviation of the mean success rate: mean - (standard_deviation *\\nsuccess_rate_standard_deviation_factor).\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"totalFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalAndLocalErrors is\\nfalse) this detection type takes into account all generated errors:\\nlocally originated and externally originated (transaction) errors.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account only externally originated\\n(transaction) errors, ignoring locally originated errors.\\nIf an upstream host is an HTTP-server, only 5xx types of error are taken\\ninto account (see Consecutive Gateway Failure for exceptions).\\nProperly formatted responses, even when they carry an operational error\\n(like index not found, access denied) are not taken into account.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive server-side error responses (for HTTP traffic,\\n5xx responses; for TCP traffic, connection failures; for Redis, failure\\nto respond PONG; etc.) before a consecutive total failure ejection\\noccurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"When set to true, outlierDetection configuration won't take any effect\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"The time interval between ejection analysis sweeps. This can result in\\nboth new ejections and hosts being returned to service.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier\\ndetection. Defaults to 10% but will eject at least one host regardless of\\nthe value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"splitExternalAndLocalErrors\": {\n \"description\": \"Determines whether to distinguish local origin failures from external\\nerrors. If set to true the following configuration parameters are taken\\ninto account: detectors.localOriginFailures.consecutive\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Circuit Breaker\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Circuit Breaker", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003464", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshExternalService.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshExternalService.json new file mode 100644 index 00000000000..b3aaf1f7318 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshExternalService.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshExternalService", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshExternalService resource.\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"Endpoints defines a list of destinations to send traffic to.\",\n \"items\": {\n \"properties\": {\n \"address\": {\n \"description\": \"Address defines an address to which a user want to send a request. Is possible to provide `domain`, `ip` and `unix` sockets.\",\n \"example\": \"unix:///tmp/example.sock\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port of the endpoint\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"extension\": {\n \"description\": \"Extension struct for a plugin configuration, in the presence of an extension `endpoints` and `tls` are not required anymore - it's up to the extension to validate them independently.\",\n \"properties\": {\n \"config\": {\n \"description\": \"Config freeform configuration for the extension.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of the extension.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"config\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match defines traffic that should be routed through the sidecar.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port defines a port to which a user does request.\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol defines a protocol of the communication. Possible values: `tcp`, `grpc`, `http`, `http2`.\",\n \"enum\": [\n \"tcp\",\n \"grpc\",\n \"http\",\n \"http2\"\n ],\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"HostnameGenerator\",\n \"description\": \"Type of the match, only `HostnameGenerator` is available at the moment.\",\n \"enum\": [\n \"HostnameGenerator\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"Tls provides a TLS configuration when proxy is resposible for a TLS origination\",\n \"properties\": {\n \"allowRenegotiation\": {\n \"default\": false,\n \"description\": \"AllowRenegotiation defines if TLS sessions will allow renegotiation.\\nSetting this to true is not recommended for security reasons.\",\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enabled defines if proxy should originate TLS.\",\n \"type\": \"boolean\"\n },\n \"verification\": {\n \"description\": \"Verification section for providing TLS verification details.\",\n \"properties\": {\n \"caCert\": {\n \"description\": \"CaCert defines a certificate of CA.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"clientCert\": {\n \"description\": \"ClientCert defines a certificate of a client.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"clientKey\": {\n \"description\": \"ClientKey defines a client private key.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"default\": \"Secured\",\n \"description\": \"Mode defines if proxy should skip verification, one of `SkipSAN`, `SkipCA`, `Secured`, `SkipAll`. Default `Secured`.\",\n \"enum\": [\n \"SkipSAN\",\n \"SkipCA\",\n \"Secured\",\n \"SkipAll\"\n ],\n \"type\": \"string\"\n },\n \"serverName\": {\n \"description\": \"ServerName overrides the default Server Name Indicator set by Kuma.\",\n \"type\": \"string\"\n },\n \"subjectAltNames\": {\n \"description\": \"SubjectAltNames list of names to verify in the certificate.\",\n \"items\": {\n \"properties\": {\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies matching type, one of `Exact`, `Prefix`. Default: `Exact`\",\n \"enum\": [\n \"Exact\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value to match.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"version\": {\n \"description\": \"Version section for providing version specification.\",\n \"properties\": {\n \"max\": {\n \"default\": \"TLSAuto\",\n \"description\": \"Max defines maximum supported version. One of `TLSAuto`, `TLS10`, `TLS11`, `TLS12`, `TLS13`.\",\n \"enum\": [\n \"TLSAuto\",\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"min\": {\n \"default\": \"TLSAuto\",\n \"description\": \"Min defines minimum supported version. One of `TLSAuto`, `TLS10`, `TLS11`, `TLS12`, `TLS13`.\",\n \"enum\": [\n \"TLSAuto\",\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"match\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh External Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh External Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshFaultInjection.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshFaultInjection.json new file mode 100644 index 00000000000..bd9c400c224 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshFaultInjection.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshFaultInjection", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshFaultInjection resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"http\": {\n \"description\": \"Http allows to define list of Http faults between dataplanes.\",\n \"items\": {\n \"description\": \"FaultInjection defines the configuration of faults between dataplanes.\",\n \"properties\": {\n \"abort\": {\n \"description\": \"Abort defines a configuration of not delivering requests to destination\\nservice and replacing the responses from destination dataplane by\\npredefined status code\",\n \"properties\": {\n \"httpStatus\": {\n \"description\": \"HTTP status code which will be returned to source side\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which abort will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"httpStatus\",\n \"percentage\"\n ],\n \"type\": \"object\"\n },\n \"delay\": {\n \"description\": \"Delay defines configuration of delaying a response from a destination\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which delay will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"description\": \"The duration during which the response will be delayed\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"percentage\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"responseBandwidth\": {\n \"description\": \"ResponseBandwidth defines a configuration to limit the speed of\\nresponding to the requests\",\n \"properties\": {\n \"limit\": {\n \"description\": \"Limit is represented by value measure in Gbps, Mbps, kbps, e.g.\\n10kbps\",\n \"type\": \"string\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which response bandwidth limit will be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"limit\",\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"http\": {\n \"description\": \"Http allows to define list of Http faults between dataplanes.\",\n \"items\": {\n \"description\": \"FaultInjection defines the configuration of faults between dataplanes.\",\n \"properties\": {\n \"abort\": {\n \"description\": \"Abort defines a configuration of not delivering requests to destination\\nservice and replacing the responses from destination dataplane by\\npredefined status code\",\n \"properties\": {\n \"httpStatus\": {\n \"description\": \"HTTP status code which will be returned to source side\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which abort will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"httpStatus\",\n \"percentage\"\n ],\n \"type\": \"object\"\n },\n \"delay\": {\n \"description\": \"Delay defines configuration of delaying a response from a destination\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which delay will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"description\": \"The duration during which the response will be delayed\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"percentage\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"responseBandwidth\": {\n \"description\": \"ResponseBandwidth defines a configuration to limit the speed of\\nresponding to the requests\",\n \"properties\": {\n \"limit\": {\n \"description\": \"Limit is represented by value measure in Gbps, Mbps, kbps, e.g.\\n10kbps\",\n \"type\": \"string\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which response bandwidth limit will be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"limit\",\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Fault Injection\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Fault Injection", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003482", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGateway.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGateway.json new file mode 100644 index 00000000000..646c0d4f4ec --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGateway.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGateway", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshGateway resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Gateway\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003466", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayConfig.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayConfig.json new file mode 100644 index 00000000000..847c9e87b5f --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayConfig.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGatewayConfig", + "schema": "{\n \"description\": \"MeshGatewayConfig holds the configuration of a MeshGateway. A\\nGatewayClass can refer to a MeshGatewayConfig via parametersRef.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MeshGatewayConfigSpec specifies the options available for a Kuma MeshGateway.\",\n \"properties\": {\n \"crossMesh\": {\n \"description\": \"CrossMesh specifies whether listeners configured by this gateway are\\ncross mesh listeners.\",\n \"type\": \"boolean\"\n },\n \"podTemplate\": {\n \"description\": \"PodTemplate configures the Pod owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Pod.\",\n \"properties\": {\n \"container\": {\n \"description\": \"Container corresponds to PodSpec.Container\",\n \"properties\": {\n \"securityContext\": {\n \"description\": \"ContainerSecurityContext corresponds to PodSpec.Container.SecurityContext\",\n \"properties\": {\n \"readOnlyRootFilesystem\": {\n \"description\": \"ReadOnlyRootFilesystem corresponds to PodSpec.Container.SecurityContext.ReadOnlyRootFilesystem\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"PodSecurityContext corresponds to PodSpec.SecurityContext\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"FSGroup corresponds to PodSpec.SecurityContext.FSGroup\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName corresponds to PodSpec.ServiceAccountName.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"replicas\": {\n \"default\": 1,\n \"description\": \"Replicas is the number of dataplane proxy replicas to create. For\\nnow this is a fixed number, but in the future it could be\\nautomatically scaled based on metrics.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources specifies the compute resources for the proxy container.\\nThe default can be set in the control plane config.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceTemplate\": {\n \"description\": \"ServiceTemplate configures the Service owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Service.\",\n \"properties\": {\n \"loadBalancerIP\": {\n \"description\": \"LoadBalancerIP corresponds to ServiceSpec.LoadBalancerIP.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceType\": {\n \"default\": \"LoadBalancer\",\n \"description\": \"ServiceType specifies the type of managed Service that will be\\ncreated to expose the dataplane proxies to traffic from outside\\nthe cluster. The ports to expose will be taken from the matching Gateway\\nresource. If there is no matching Gateway, the managed Service will\\nbe deleted.\",\n \"enum\": [\n \"LoadBalancer\",\n \"ClusterIP\",\n \"NodePort\"\n ],\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags specifies a set of Kuma tags that are included in the\\nMeshGatewayInstance and thus propagated to every Dataplane generated to\\nserve the MeshGateway.\\nThese tags should include a maximum of one `kuma.io/service` tag.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Gateway Config\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayInstance.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayInstance.json new file mode 100644 index 00000000000..c692234d61b --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayInstance.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGatewayInstance", + "schema": "{\n \"description\": \"MeshGatewayInstance represents a managed instance of a dataplane proxy for a Kuma\\nGateway.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MeshGatewayInstanceSpec specifies the options available for a GatewayDataplane.\",\n \"properties\": {\n \"podTemplate\": {\n \"description\": \"PodTemplate configures the Pod owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Pod.\",\n \"properties\": {\n \"container\": {\n \"description\": \"Container corresponds to PodSpec.Container\",\n \"properties\": {\n \"securityContext\": {\n \"description\": \"ContainerSecurityContext corresponds to PodSpec.Container.SecurityContext\",\n \"properties\": {\n \"readOnlyRootFilesystem\": {\n \"description\": \"ReadOnlyRootFilesystem corresponds to PodSpec.Container.SecurityContext.ReadOnlyRootFilesystem\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"PodSecurityContext corresponds to PodSpec.SecurityContext\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"FSGroup corresponds to PodSpec.SecurityContext.FSGroup\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName corresponds to PodSpec.ServiceAccountName.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"replicas\": {\n \"default\": 1,\n \"description\": \"Replicas is the number of dataplane proxy replicas to create. For\\nnow this is a fixed number, but in the future it could be\\nautomatically scaled based on metrics.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources specifies the compute resources for the proxy container.\\nThe default can be set in the control plane config.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceTemplate\": {\n \"description\": \"ServiceTemplate configures the Service owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Service.\",\n \"properties\": {\n \"loadBalancerIP\": {\n \"description\": \"LoadBalancerIP corresponds to ServiceSpec.LoadBalancerIP.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceType\": {\n \"default\": \"LoadBalancer\",\n \"description\": \"ServiceType specifies the type of managed Service that will be\\ncreated to expose the dataplane proxies to traffic from outside\\nthe cluster. The ports to expose will be taken from the matching Gateway\\nresource. If there is no matching Gateway, the managed Service will\\nbe deleted.\",\n \"enum\": [\n \"LoadBalancer\",\n \"ClusterIP\",\n \"NodePort\"\n ],\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags specifies the Kuma tags that are propagated to the managed\\ndataplane proxies. These tags should include exactly one\\n`kuma.io/service` tag, and should match exactly one Gateway\\nresource.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Gateway Instance\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway Instance", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003472", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayRoute.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayRoute.json new file mode 100644 index 00000000000..f673fe0887e --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGatewayRoute.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGatewayRoute", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshGatewayRoute resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Gateway Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003488", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGlobalRateLimit.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGlobalRateLimit.json new file mode 100644 index 00000000000..e64a9415c09 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshGlobalRateLimit.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGlobalRateLimit", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshGlobalRateLimit resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"backend\": {\n \"description\": \"Backend defines location of rate limit backend service.\",\n \"properties\": {\n \"rateLimitService\": {\n \"properties\": {\n \"limitOnServiceFail\": {\n \"description\": \"LimitOnServiceFail will pass limit requests if ratelimit service is not reachable.\",\n \"type\": \"boolean\"\n },\n \"timeout\": {\n \"description\": \"Timeout for rate limit request made form Data Plane Proxy to rate limit service.\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"Url defines address of rate limit service.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"timeout\",\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"rateLimitService\"\n ],\n \"type\": \"object\"\n },\n \"http\": {\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitOnRequest\": {\n \"description\": \"Defines rate limit based on request content\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind defines type of rate limit config. Possible options: OnHeader.\",\n \"enum\": [\n \"OnHeader\"\n ],\n \"type\": \"string\"\n },\n \"limits\": {\n \"description\": \"Limits defines limit configuration.\",\n \"items\": {\n \"properties\": {\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for. Only 1s, 1m, 1h or 24h can be configured.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"value\": {\n \"description\": \"Value of the request element on which rate limit should apply. E.g. header value.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"requestRate\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the request element on which rate limit should apply. E.g. header name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"limits\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for. Only 1s, 1m, 1h or 24h can be configured.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Mode defines rate limit behavior when limits are reached. Possible options: Limit and Shadow. Setting Shadow will\\nnot block over the limit requests but will update metrics. This is useful for testing rate limit configuration.\",\n \"enum\": [\n \"Limit\",\n \"Shadow\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backend\",\n \"http\"\n ],\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"backend\": {\n \"description\": \"Backend defines location of rate limit backend service.\",\n \"properties\": {\n \"rateLimitService\": {\n \"properties\": {\n \"limitOnServiceFail\": {\n \"description\": \"LimitOnServiceFail will pass limit requests if ratelimit service is not reachable.\",\n \"type\": \"boolean\"\n },\n \"timeout\": {\n \"description\": \"Timeout for rate limit request made form Data Plane Proxy to rate limit service.\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"Url defines address of rate limit service.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"timeout\",\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"rateLimitService\"\n ],\n \"type\": \"object\"\n },\n \"http\": {\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"ratelimitOnRequest\": {\n \"description\": \"Defines rate limit based on request content\",\n \"items\": {\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind defines type of rate limit config. Possible options: OnHeader.\",\n \"enum\": [\n \"OnHeader\"\n ],\n \"type\": \"string\"\n },\n \"limits\": {\n \"description\": \"Limits defines limit configuration.\",\n \"items\": {\n \"properties\": {\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for. Only 1s, 1m, 1h or 24h can be configured.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"value\": {\n \"description\": \"Value of the request element on which rate limit should apply. E.g. header value.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"requestRate\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the request element on which rate limit should apply. E.g. header name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"limits\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for. Only 1s, 1m, 1h or 24h can be configured.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Mode defines rate limit behavior when limits are reached. Possible options: Limit and Shadow. Setting Shadow will\\nnot block over the limit requests but will update metrics. This is useful for testing rate limit configuration.\",\n \"enum\": [\n \"Limit\",\n \"Shadow\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backend\",\n \"http\"\n ],\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Global Rate Limit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Global Rate Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHTTPRoute.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHTTPRoute.json new file mode 100644 index 00000000000..82446d31fbd --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHTTPRoute.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshHTTPRoute", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshHTTPRoute resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To matches destination services of requests and holds configuration.\",\n \"items\": {\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames is only valid when targeting MeshGateway and limits the\\neffects of the rules to requests to this hostname.\\nGiven hostnames must intersect with the hostname of the listeners the\\nroute attaches to.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"rules\": {\n \"description\": \"Rules contains the routing rules applies to a combination of top-level\\ntargetRef and the targetRef in this entry.\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default holds routing rules that can be merged with rules from other\\npolicies.\",\n \"properties\": {\n \"backendRefs\": {\n \"items\": {\n \"description\": \"BackendRef defines where to forward traffic.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"Only one action is supported per header name.\\nConfiguration to set or add multiple values for a header must use RFC 7230\\nheader value formatting, separating each value with a comma.\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"remove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"maxItems\": 16,\n \"type\": \"array\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"requestMirror\": {\n \"properties\": {\n \"backendRef\": {\n \"description\": \"TODO forbid weight\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests to mirror. If not specified, all requests\\nto the target cluster will be mirrored.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"backendRef\"\n ],\n \"type\": \"object\"\n },\n \"requestRedirect\": {\n \"properties\": {\n \"hostname\": {\n \"description\": \"PreciseHostname is the fully qualified domain name of a network host. This\\nmatches the RFC 1123 definition of a hostname with 1 notable exception that\\nnumeric IP addresses are not allowed.\\n\\n\\nNote that as per RFC1035 and RFC1123, a *label* must consist of lower case\\nalphanumeric characters or '-', and must start and end with an alphanumeric\\ncharacter. No other punctuation is allowed.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path defines parameters used to modify the path of the incoming request.\\nThe modified path is then used to construct the location header.\\nWhen empty, the request path is used as-is.\",\n \"properties\": {\n \"replaceFullPath\": {\n \"type\": \"string\"\n },\n \"replacePrefixMatch\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"ReplaceFullPath\",\n \"ReplacePrefixMatch\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port is the port to be used in the value of the `Location`\\nheader in the response.\\nWhen empty, port (if specified) of the request is used.\",\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"statusCode\": {\n \"default\": 302,\n \"description\": \"StatusCode is the HTTP status code to be used in response.\",\n \"enum\": [\n 301,\n 302,\n 303,\n 307,\n 308\n ],\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"Only one action is supported per header name.\\nConfiguration to set or add multiple values for a header must use RFC 7230\\nheader value formatting, separating each value with a comma.\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"remove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"maxItems\": 16,\n \"type\": \"array\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"RequestHeaderModifier\",\n \"ResponseHeaderModifier\",\n \"RequestRedirect\",\n \"URLRewrite\",\n \"RequestMirror\"\n ],\n \"type\": \"string\"\n },\n \"urlRewrite\": {\n \"properties\": {\n \"hostToBackendHostname\": {\n \"description\": \"HostToBackendHostname rewrites the hostname to the hostname of the\\nupstream host. This option is only available when targeting MeshGateways.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Hostname is the value to be used to replace the host header value during forwarding.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path defines a path rewrite.\",\n \"properties\": {\n \"replaceFullPath\": {\n \"type\": \"string\"\n },\n \"replacePrefixMatch\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"ReplaceFullPath\",\n \"ReplacePrefixMatch\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"matches\": {\n \"description\": \"Matches describes how to match HTTP requests this rule should be applied\\nto.\",\n \"items\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"method\": {\n \"enum\": [\n \"CONNECT\",\n \"DELETE\",\n \"GET\",\n \"HEAD\",\n \"OPTIONS\",\n \"PATCH\",\n \"POST\",\n \"PUT\",\n \"TRACE\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"properties\": {\n \"type\": {\n \"enum\": [\n \"Exact\",\n \"PathPrefix\",\n \"RegularExpression\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Exact or prefix matches must be an absolute path. A prefix matches only\\nif separated by a slash or the entire path.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"queryParams\": {\n \"description\": \"QueryParams matches based on HTTP URL query parameters. Multiple matches\\nare ANDed together such that all listed matches must succeed.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Exact\",\n \"RegularExpression\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"default\",\n \"matches\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nrequest destinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh HTTP Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh HTTP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003471", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHealthCheck.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHealthCheck.json new file mode 100644 index 00000000000..3e7891dd472 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshHealthCheck.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshHealthCheck", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshHealthCheck resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"alwaysLogHealthCheckFailures\": {\n \"description\": \"If set to true, health check failure events will always be logged. If set\\nto false, only the initial health check failure event will be logged. The\\ndefault value is false.\",\n \"type\": \"boolean\"\n },\n \"eventLogPath\": {\n \"description\": \"Specifies the path to the file where Envoy can log health check events.\\nIf empty, no event log will be written.\",\n \"type\": \"string\"\n },\n \"failTrafficOnPanic\": {\n \"description\": \"If set to true, Envoy will not consider any hosts when the cluster is in\\n'panic mode'. Instead, the cluster will fail all requests as if all hosts\\nare unhealthy. This can help avoid potentially overwhelming a failing\\nservice.\",\n \"type\": \"boolean\"\n },\n \"grpc\": {\n \"description\": \"GrpcHealthCheck defines gRPC configuration which will instruct the service\\nthe health check will be made for is a gRPC service.\",\n \"properties\": {\n \"authority\": {\n \"description\": \"The value of the :authority header in the gRPC health check request,\\nby default name of the cluster this health check is associated with\",\n \"type\": \"string\"\n },\n \"disabled\": {\n \"description\": \"If true the GrpcHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"serviceName\": {\n \"description\": \"Service name parameter which will be sent to gRPC service\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthyPanicThreshold\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Allows to configure panic threshold for Envoy cluster. If not specified,\\nthe default is 50%. To disable panic mode, set to 0%.\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"healthyThreshold\": {\n \"default\": 1,\n \"description\": \"Number of consecutive healthy checks before considering a host healthy.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"http\": {\n \"description\": \"HttpHealthCheck defines HTTP configuration which will instruct the service\\nthe health check will be made for is an HTTP service.\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"If true the HttpHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"expectedStatuses\": {\n \"description\": \"List of HTTP response statuses which are considered healthy\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"default\": \"/\",\n \"description\": \"The HTTP path which will be requested during the health check\\n(ie. /health)\",\n \"type\": \"string\"\n },\n \"requestHeadersToAdd\": {\n \"description\": \"The list of HTTP headers which should be added to each health check\\nrequest\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initialJitter\": {\n \"description\": \"If specified, Envoy will start health checking after a random time in\\nms between 0 and initialJitter. This only applies to the first health\\ncheck.\",\n \"type\": \"string\"\n },\n \"interval\": {\n \"default\": \"1m\",\n \"description\": \"Interval between consecutive health checks.\",\n \"type\": \"string\"\n },\n \"intervalJitter\": {\n \"description\": \"If specified, during every interval Envoy will add IntervalJitter to the\\nwait time.\",\n \"type\": \"string\"\n },\n \"intervalJitterPercent\": {\n \"description\": \"If specified, during every interval Envoy will add IntervalJitter *\\nIntervalJitterPercent / 100 to the wait time. If IntervalJitter and\\nIntervalJitterPercent are both set, both of them will be used to\\nincrease the wait time.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"noTrafficInterval\": {\n \"description\": \"The \\\"no traffic interval\\\" is a special health check interval that is used\\nwhen a cluster has never had traffic routed to it. This lower interval\\nallows cluster information to be kept up to date, without sending a\\npotentially large amount of active health checking traffic for no reason.\\nOnce a cluster has been used for traffic routing, Envoy will shift back\\nto using the standard health check interval that is defined. Note that\\nthis interval takes precedence over any other. The default value for \\\"no\\ntraffic interval\\\" is 60 seconds.\",\n \"type\": \"string\"\n },\n \"reuseConnection\": {\n \"description\": \"Reuse health check connection between health checks. Default is true.\",\n \"type\": \"boolean\"\n },\n \"tcp\": {\n \"description\": \"TcpHealthCheck defines configuration for specifying bytes to send and\\nexpected response during the health check\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"If true the TcpHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"receive\": {\n \"description\": \"List of Base64 encoded blocks of strings expected as a response. When checking the response,\\n\\\"fuzzy\\\" matching is performed such that each block must be found, and\\nin the order specified, but not necessarily contiguous.\\nIf not provided or empty, checks will be performed as \\\"connect only\\\" and be marked as successful when TCP connection is successfully established.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"send\": {\n \"description\": \"Base64 encoded content of the message which will be sent during the health check to the target\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"default\": \"15s\",\n \"description\": \"Maximum time to wait for a health check response.\",\n \"type\": \"string\"\n },\n \"unhealthyThreshold\": {\n \"default\": 5,\n \"description\": \"Number of consecutive unhealthy checks before considering a host\\nunhealthy.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Health Check\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Health Check", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003474", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshInsight.json new file mode 100644 index 00000000000..d9891b23119 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003470", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json new file mode 100644 index 00000000000..855ca9f572a --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshLoadBalancingStrategy", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshLoadBalancingStrategy resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"loadBalancer\": {\n \"description\": \"LoadBalancer allows to specify load balancing algorithm.\",\n \"properties\": {\n \"leastRequest\": {\n \"description\": \"LeastRequest selects N random available hosts as specified in 'choiceCount' (2 by default)\\nand picks the host which has the fewest active requests\",\n \"properties\": {\n \"activeRequestBias\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"ActiveRequestBias refers to dynamic weights applied when hosts have varying load\\nbalancing weights. A higher value here aggressively reduces the weight of endpoints\\nthat are currently handling active requests. In essence, the higher the ActiveRequestBias\\nvalue, the more forcefully it reduces the load balancing weight of endpoints that are\\nactively serving requests.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"choiceCount\": {\n \"description\": \"ChoiceCount is the number of random healthy hosts from which the host with\\nthe fewest active requests will be chosen. Defaults to 2 so that Envoy performs\\ntwo-choice selection if the field is not set.\",\n \"format\": \"int32\",\n \"minimum\": 2,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"maglev\": {\n \"description\": \"Maglev implements consistent hashing to upstream hosts. Maglev can be used as\\na drop in replacement for the ring hash load balancer any place in which\\nconsistent hashing is desired.\",\n \"properties\": {\n \"hashPolicies\": {\n \"description\": \"HashPolicies specify a list of request/connection properties that are used to calculate a hash.\\nThese hash policies are executed in the specified order. If a hash policy has the “terminal” attribute\\nset to true, and there is already a hash generated, the hash is returned immediately,\\nignoring the rest of the hash policy list.\",\n \"items\": {\n \"properties\": {\n \"connection\": {\n \"properties\": {\n \"sourceIP\": {\n \"description\": \"Hash on source IP address.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the cookie that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"The name of the path for the cookie.\",\n \"type\": \"string\"\n },\n \"ttl\": {\n \"description\": \"If specified, a cookie with the TTL will be generated if the cookie is not present.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"filterState\": {\n \"properties\": {\n \"key\": {\n \"description\": \"The name of the Object in the per-request filterState, which is\\nan Envoy::Hashable object. If there is no data associated with the key,\\nor the stored object is not Envoy::Hashable, no hash will be produced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"header\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the request header that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"queryParameter\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the URL query parameter that will be used to obtain the hash key.\\nIf the parameter is not present, no hash will be produced. Query parameter names\\nare case-sensitive.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"terminal\": {\n \"description\": \"Terminal is a flag that short-circuits the hash computing. This field provides\\na ‘fallback’ style of configuration: “if a terminal policy doesn’t work, fallback\\nto rest of the policy list”, it saves time when the terminal policy works.\\nIf true, and there is already a hash computed, ignore rest of the list of hash polices.\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"enum\": [\n \"Header\",\n \"Cookie\",\n \"SourceIP\",\n \"QueryParameter\",\n \"FilterState\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tableSize\": {\n \"description\": \"The table size for Maglev hashing. Maglev aims for “minimal disruption”\\nrather than an absolute guarantee. Minimal disruption means that when\\nthe set of upstream hosts change, a connection will likely be sent\\nto the same upstream as it was before. Increasing the table size reduces\\nthe amount of disruption. The table size must be prime number limited to 5000011.\\nIf it is not specified, the default is 65537.\",\n \"format\": \"int32\",\n \"maximum\": 5000011,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"random\": {\n \"description\": \"Random selects a random available host. The random load balancer generally\\nperforms better than round-robin if no health checking policy is configured.\\nRandom selection avoids bias towards the host in the set that comes after a failed host.\",\n \"type\": \"object\"\n },\n \"ringHash\": {\n \"description\": \"RingHash implements consistent hashing to upstream hosts. Each host is mapped\\nonto a circle (the “ring”) by hashing its address; each request is then routed\\nto a host by hashing some property of the request, and finding the nearest\\ncorresponding host clockwise around the ring.\",\n \"properties\": {\n \"hashFunction\": {\n \"description\": \"HashFunction is a function used to hash hosts onto the ketama ring.\\nThe value defaults to XX_HASH. Available values – XX_HASH, MURMUR_HASH_2.\",\n \"enum\": [\n \"XXHash\",\n \"MurmurHash2\"\n ],\n \"type\": \"string\"\n },\n \"hashPolicies\": {\n \"description\": \"HashPolicies specify a list of request/connection properties that are used to calculate a hash.\\nThese hash policies are executed in the specified order. If a hash policy has the “terminal” attribute\\nset to true, and there is already a hash generated, the hash is returned immediately,\\nignoring the rest of the hash policy list.\",\n \"items\": {\n \"properties\": {\n \"connection\": {\n \"properties\": {\n \"sourceIP\": {\n \"description\": \"Hash on source IP address.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the cookie that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"The name of the path for the cookie.\",\n \"type\": \"string\"\n },\n \"ttl\": {\n \"description\": \"If specified, a cookie with the TTL will be generated if the cookie is not present.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"filterState\": {\n \"properties\": {\n \"key\": {\n \"description\": \"The name of the Object in the per-request filterState, which is\\nan Envoy::Hashable object. If there is no data associated with the key,\\nor the stored object is not Envoy::Hashable, no hash will be produced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"header\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the request header that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"queryParameter\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the URL query parameter that will be used to obtain the hash key.\\nIf the parameter is not present, no hash will be produced. Query parameter names\\nare case-sensitive.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"terminal\": {\n \"description\": \"Terminal is a flag that short-circuits the hash computing. This field provides\\na ‘fallback’ style of configuration: “if a terminal policy doesn’t work, fallback\\nto rest of the policy list”, it saves time when the terminal policy works.\\nIf true, and there is already a hash computed, ignore rest of the list of hash polices.\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"enum\": [\n \"Header\",\n \"Cookie\",\n \"SourceIP\",\n \"QueryParameter\",\n \"FilterState\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"maxRingSize\": {\n \"description\": \"Maximum hash ring size. Defaults to 8M entries, and limited to 8M entries,\\nbut can be lowered to further constrain resource use.\",\n \"format\": \"int32\",\n \"maximum\": 8000000,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"minRingSize\": {\n \"description\": \"Minimum hash ring size. The larger the ring is (that is,\\nthe more hashes there are for each provided host) the better the request distribution\\nwill reflect the desired weights. Defaults to 1024 entries, and limited to 8M entries.\",\n \"format\": \"int32\",\n \"maximum\": 8000000,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"roundRobin\": {\n \"description\": \"RoundRobin is a load balancing algorithm that distributes requests\\nacross available upstream hosts in round-robin order.\",\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"RoundRobin\",\n \"LeastRequest\",\n \"RingHash\",\n \"Random\",\n \"Maglev\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"localityAwareness\": {\n \"description\": \"LocalityAwareness contains configuration for locality aware load balancing.\",\n \"properties\": {\n \"crossZone\": {\n \"description\": \"CrossZone defines locality aware load balancing priorities when dataplane proxies inside local zone\\nare unavailable\",\n \"properties\": {\n \"failover\": {\n \"description\": \"Failover defines list of load balancing rules in order of priority\",\n \"items\": {\n \"properties\": {\n \"from\": {\n \"description\": \"From defines the list of zones to which the rule applies\",\n \"properties\": {\n \"zones\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"zones\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To defines to which zones the traffic should be load balanced\",\n \"properties\": {\n \"type\": {\n \"description\": \"Type defines how target zones will be picked from available zones\",\n \"enum\": [\n \"None\",\n \"Only\",\n \"Any\",\n \"AnyExcept\"\n ],\n \"type\": \"string\"\n },\n \"zones\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"to\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"failoverThreshold\": {\n \"description\": \"FailoverThreshold defines the percentage of live destination dataplane proxies below which load balancing to the\\nnext priority starts.\\nExample: If you configure failoverThreshold to 70, and you have deployed 10 destination dataplane proxies.\\nLoad balancing to next priority will start when number of live destination dataplane proxies drops below 7.\\nDefault 50\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Disabled allows to disable locality-aware load balancing.\\nWhen disabled requests are distributed across all endpoints regardless of locality.\",\n \"type\": \"boolean\"\n },\n \"localZone\": {\n \"description\": \"LocalZone defines locality aware load balancing priorities between dataplane proxies inside a zone\",\n \"properties\": {\n \"affinityTags\": {\n \"description\": \"AffinityTags list of tags for local zone load balancing.\",\n \"items\": {\n \"properties\": {\n \"key\": {\n \"description\": \"Key defines tag for which affinity is configured\",\n \"type\": \"string\"\n },\n \"weight\": {\n \"description\": \"Weight of the tag used for load balancing. The bigger the weight the bigger the priority.\\nPercentage of local traffic load balanced to tag is computed by dividing weight by sum of weights from all tags.\\nFor example with two affinity tags first with weight 80 and second with weight 20,\\nthen 80% of traffic will be redirected to the first tag, and 20% of traffic will be redirected to second one.\\nSetting weights is not mandatory. When weights are not set control plane will compute default weight based on list order.\\nDefault: If you do not specify weight we will adjust them so that 90% traffic goes to first tag, 9% to next, and 1% to third and so on.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Load Balancing Strategy\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Load Balancing Strategy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003468", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshMetric.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshMetric.json new file mode 100644 index 00000000000..e1d44d31514 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshMetric.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshMetric", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshMetric resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshMetric configuration.\",\n \"properties\": {\n \"applications\": {\n \"description\": \"Applications is a list of application that Dataplane Proxy will scrape\",\n \"items\": {\n \"properties\": {\n \"address\": {\n \"description\": \"Address on which an application listens.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the application to scrape\",\n \"type\": \"string\"\n },\n \"path\": {\n \"default\": \"/metrics/prometheus\",\n \"description\": \"Path on which an application expose HTTP endpoint with metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port on which an application expose HTTP endpoint with metrics.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"backends\": {\n \"description\": \"Backends list that will be used to collect metrics.\",\n \"items\": {\n \"properties\": {\n \"openTelemetry\": {\n \"description\": \"OpenTelemetry backend configuration\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Endpoint for OpenTelemetry collector\",\n \"type\": \"string\"\n },\n \"refreshInterval\": {\n \"description\": \"RefreshInterval defines how frequent metrics should be pushed to collector\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"description\": \"Prometheus backend configuration.\",\n \"properties\": {\n \"clientId\": {\n \"description\": \"ClientId of the Prometheus backend. Needed when using MADS for DP discovery.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"default\": \"/metrics\",\n \"description\": \"Path on which a dataplane should expose HTTP endpoint with Prometheus metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"default\": 5670,\n \"description\": \"Port on which a dataplane should expose HTTP endpoint with Prometheus metrics.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tls\": {\n \"description\": \"Configuration of TLS for prometheus listener.\",\n \"properties\": {\n \"mode\": {\n \"default\": \"Disabled\",\n \"description\": \"Configuration of TLS for Prometheus listener.\",\n \"enum\": [\n \"Disabled\",\n \"ProvidedTLS\",\n \"ActiveMTLSBackend\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mode\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type of the backend that will be used to collect metrics. At the moment only Prometheus backend is available.\",\n \"enum\": [\n \"Prometheus\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sidecar\": {\n \"description\": \"Sidecar metrics collection configuration\",\n \"properties\": {\n \"includeUnused\": {\n \"default\": false,\n \"description\": \"IncludeUnused if false will scrape only metrics that has been by sidecar (counters incremented\\nat least once, gauges changed at least once, and histograms added to at\\nleast once). If true will scrape all metrics (even the ones with zeros).\",\n \"type\": \"boolean\"\n },\n \"profiles\": {\n \"description\": \"Profiles allows to customize which metrics are published.\",\n \"properties\": {\n \"appendProfiles\": {\n \"description\": \"AppendProfiles allows to combine the metrics from multiple predefined profiles.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the predefined profile, one of: all, basic, none\",\n \"enum\": [\n \"All\",\n \"Basic\",\n \"None\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"exclude\": {\n \"description\": \"Exclude makes it possible to exclude groups of metrics from a resulting profile.\\nExclude is subordinate to Include.\",\n \"items\": {\n \"properties\": {\n \"match\": {\n \"description\": \"Match is the value used to match using particular Type\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type defined the type of selector, one of: prefix, regex, exact\",\n \"enum\": [\n \"Prefix\",\n \"Regex\",\n \"Exact\",\n \"Contains\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"include\": {\n \"description\": \"Include makes it possible to include additional metrics in a selected profiles.\\nInclude takes precedence over Exclude.\",\n \"items\": {\n \"properties\": {\n \"match\": {\n \"description\": \"Match is the value used to match using particular Type\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type defined the type of selector, one of: prefix, regex, exact\",\n \"enum\": [\n \"Prefix\",\n \"Regex\",\n \"Exact\",\n \"Contains\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Metric\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Metric", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003467", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshOPA.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshOPA.json new file mode 100644 index 00000000000..ff703e144a3 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshOPA.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshOPA", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshOPA resource.\",\n \"properties\": {\n \"default\": {\n \"properties\": {\n \"agentConfig\": {\n \"description\": \"AgentConfig defines bootstrap OPA agent configuration.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"appendPolicies\": {\n \"description\": \"Policies define OPA policies that will be applied on OPA Agent.\",\n \"items\": {\n \"properties\": {\n \"ignoreDecision\": {\n \"description\": \"If true, then policy won't be taken into account when making a decision.\",\n \"type\": \"boolean\"\n },\n \"rego\": {\n \"description\": \"OPA Policy written in Rego. Available values: secret, inline, inlineString.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"rego\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"authConfig\": {\n \"description\": \"AuthConfig are configurations specific to the filter.\",\n \"properties\": {\n \"onAgentFailure\": {\n \"description\": \"OnAgentFailure either 'allow' or 'deny' (default to deny) whether\\nto allow requests when the authorization agent failed.\",\n \"enum\": [\n \"Allow\",\n \"Deny\"\n ],\n \"type\": \"string\"\n },\n \"requestBody\": {\n \"description\": \"RequestBody configuration to apply on the request body sent to the\\nauthorization agent (if absent, the body is not sent).\",\n \"properties\": {\n \"maxSize\": {\n \"description\": \"MaxSize defines the maximum payload size sent to authorization agent. If the payload\\nis larger it will be truncated and there will be a header\\n`x-envoy-auth-partial-body: true`. If it is set to 0 no body will be\\nsent to the agent.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sendRawBody\": {\n \"description\": \"SendRawBody enable sending raw body instead of the body encoded into UTF-8\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"statusOnError\": {\n \"description\": \"StatusOnError is the http status to return when there's a connection\\nfailure between the dataplane and the authorization agent\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"timeout\": {\n \"description\": \"Timeout for the single gRPC request from Envoy to OPA Agent.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh OPA\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh OPA", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshPassthrough.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshPassthrough.json new file mode 100644 index 00000000000..530db5154ea --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshPassthrough.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshPassthrough", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshPassthrough resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshPassthrough configuration.\",\n \"properties\": {\n \"appendMatch\": {\n \"description\": \"AppendMatch is a list of destinations that should be allowed through the sidecar.\",\n \"items\": {\n \"properties\": {\n \"port\": {\n \"description\": \"Port defines the port to which a user makes a request.\",\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol defines the communication protocol. Possible values: `tcp`, `tls`, `grpc`, `http`, `http2`.\",\n \"enum\": [\n \"tcp\",\n \"tls\",\n \"grpc\",\n \"http\",\n \"http2\"\n ],\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of the match, one of `Domain`, `IP` or `CIDR` is available.\",\n \"enum\": [\n \"Domain\",\n \"IP\",\n \"CIDR\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value for the specified Type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"passthroughMode\": {\n \"default\": \"None\",\n \"description\": \"Defines the passthrough behavior. Possible values: `All`, `None`, `Matched`\\nWhen `All` or `None` `appendMatch` has no effect.\",\n \"enum\": [\n \"All\",\n \"Matched\",\n \"None\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Passthrough\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Passthrough", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshProxyPatch.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshProxyPatch.json new file mode 100644 index 00000000000..ce331a7c35b --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshProxyPatch.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshProxyPatch", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshProxyPatch resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'.\",\n \"properties\": {\n \"appendModifications\": {\n \"description\": \"AppendModifications is a list of modifications applied on the selected proxy.\",\n \"items\": {\n \"properties\": {\n \"cluster\": {\n \"description\": \"Cluster is a modification of Envoy's Cluster resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's Cluster\\nresource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the cluster to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched cluster.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"httpFilter\": {\n \"description\": \"HTTPFilter is a modification of Envoy HTTP Filter\\navailable in HTTP Connection Manager in a Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's\\nHTTP Filter available in HTTP Connection Manager in a Listener resource.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"listenerName\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"listenerTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Listener tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the HTTP filter. For example \\\"envoy.filters.http.local_ratelimit\\\"\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Remove\",\n \"Patch\",\n \"AddFirst\",\n \"AddBefore\",\n \"AddAfter\",\n \"AddLast\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"listener\": {\n \"description\": \"Listener is a modification of Envoy's Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's Listener\\nresource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"networkFilter\": {\n \"description\": \"NetworkFilter is a modification of Envoy Listener's filter.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy Listener's\\nfilter.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"listenerName\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"listenerTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Listener tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the network filter. For example \\\"envoy.filters.network.ratelimit\\\"\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Remove\",\n \"Patch\",\n \"AddFirst\",\n \"AddBefore\",\n \"AddAfter\",\n \"AddLast\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"virtualHost\": {\n \"description\": \"VirtualHost is a modification of Envoy's VirtualHost\\nreferenced in HTTP Connection Manager in a Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's\\nVirtualHost resource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the VirtualHost to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n },\n \"routeConfigurationName\": {\n \"description\": \"Name of the RouteConfiguration resource to match.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"operation\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"appendModifications\"\n ],\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"default\",\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Proxy Patch\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Proxy Patch", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003486", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRateLimit.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRateLimit.json new file mode 100644 index 00000000000..582a38b7a88 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRateLimit.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshRateLimit", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshRateLimit resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"local\": {\n \"description\": \"LocalConf defines local http or/and tcp rate limit configuration\",\n \"properties\": {\n \"http\": {\n \"description\": \"LocalHTTP defines configuration of local HTTP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/local_rate_limit_filter\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"LocalTCP defines confguration of local TCP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/local_rate_limit_filter\",\n \"properties\": {\n \"connectionRate\": {\n \"description\": \"Defines how many connections are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\\nDefault: false\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"local\": {\n \"description\": \"LocalConf defines local http or/and tcp rate limit configuration\",\n \"properties\": {\n \"http\": {\n \"description\": \"LocalHTTP defines configuration of local HTTP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/local_rate_limit_filter\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"LocalTCP defines confguration of local TCP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/local_rate_limit_filter\",\n \"properties\": {\n \"connectionRate\": {\n \"description\": \"Defines how many connections are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\\nDefault: false\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Rate Limit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Rate Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003489", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRetry.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRetry.json new file mode 100644 index 00000000000..6a4db0a4eca --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshRetry.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshRetry", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshRetry resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"grpc\": {\n \"description\": \"GRPC defines a configuration of retries for GRPC traffic\",\n \"properties\": {\n \"backOff\": {\n \"description\": \"BackOff is a configuration of durations which will be used in an exponential\\nbackoff strategy between retries.\",\n \"properties\": {\n \"baseInterval\": {\n \"default\": \"25ms\",\n \"description\": \"BaseInterval is an amount of time which should be taken between retries.\\nMust be greater than zero. Values less than 1 ms are rounded up to 1 ms.\",\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\\nDefault is 10 times the \\\"BaseInterval\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"numRetries\": {\n \"description\": \"NumRetries is the number of attempts that will be made on failed (and\\nretriable) requests. If not set, the default value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"description\": \"PerTryTimeout is the maximum amount of time each retry attempt can take\\nbefore it times out. If not set, the global request timeout for the route\\nwill be used. Setting this value to 0 will disable the per-try timeout.\",\n \"type\": \"string\"\n },\n \"rateLimitedBackOff\": {\n \"description\": \"RateLimitedBackOff is a configuration of backoff which will be used when\\nthe upstream returns one of the headers configured.\",\n \"properties\": {\n \"maxInterval\": {\n \"default\": \"300s\",\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\",\n \"type\": \"string\"\n },\n \"resetHeaders\": {\n \"description\": \"ResetHeaders specifies the list of headers (like Retry-After or X-RateLimit-Reset)\\nto match against the response. Headers are tried in order, and matched\\ncase-insensitive. The first header to be parsed successfully is used.\\nIf no headers match the default exponential BackOff is used instead.\",\n \"items\": {\n \"properties\": {\n \"format\": {\n \"description\": \"The format of the reset header.\",\n \"enum\": [\n \"Seconds\",\n \"UnixTimestamp\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The Name of the reset header.\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"format\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"description\": \"RetryOn is a list of conditions which will cause a retry.\",\n \"example\": [\n \"Canceled\",\n \"DeadlineExceeded\",\n \"Internal\",\n \"ResourceExhausted\",\n \"Unavailable\"\n ],\n \"items\": {\n \"enum\": [\n \"Canceled\",\n \"DeadlineExceeded\",\n \"Internal\",\n \"ResourceExhausted\",\n \"Unavailable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"http\": {\n \"description\": \"HTTP defines a configuration of retries for HTTP traffic\",\n \"properties\": {\n \"backOff\": {\n \"description\": \"BackOff is a configuration of durations which will be used in exponential\\nbackoff strategy between retries.\",\n \"properties\": {\n \"baseInterval\": {\n \"default\": \"25ms\",\n \"description\": \"BaseInterval is an amount of time which should be taken between retries.\\nMust be greater than zero. Values less than 1 ms are rounded up to 1 ms.\",\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\\nDefault is 10 times the \\\"BaseInterval\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"hostSelection\": {\n \"description\": \"HostSelection is a list of predicates that dictate how hosts should be selected\\nwhen requests are retried.\",\n \"items\": {\n \"properties\": {\n \"predicate\": {\n \"description\": \"Type is requested predicate mode.\",\n \"enum\": [\n \"OmitPreviousHosts\",\n \"OmitHostsWithTags\",\n \"OmitPreviousPriorities\"\n ],\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags is a map of metadata to match against for selecting the omitted hosts. Required if Type is\\nOmitHostsWithTags\",\n \"type\": \"object\"\n },\n \"updateFrequency\": {\n \"default\": 2,\n \"description\": \"UpdateFrequency is how often the priority load should be updated based on previously attempted priorities.\\nUsed for OmitPreviousPriorities.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"predicate\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostSelectionMaxAttempts\": {\n \"description\": \"HostSelectionMaxAttempts is the maximum number of times host selection will be\\nreattempted before giving up, at which point the host that was last selected will\\nbe routed to. If unspecified, this will default to retrying once.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"numRetries\": {\n \"description\": \"NumRetries is the number of attempts that will be made on failed (and\\nretriable) requests. If not set, the default value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"description\": \"PerTryTimeout is the amount of time after which retry attempt should time out.\\nIf left unspecified, the global route timeout for the request will be used.\\nConsequently, when using a 5xx based retry policy, a request that times out\\nwill not be retried as the total timeout budget would have been exhausted.\\nSetting this timeout to 0 will disable it.\",\n \"type\": \"string\"\n },\n \"rateLimitedBackOff\": {\n \"description\": \"RateLimitedBackOff is a configuration of backoff which will be used\\nwhen the upstream returns one of the headers configured.\",\n \"properties\": {\n \"maxInterval\": {\n \"default\": \"300s\",\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\",\n \"type\": \"string\"\n },\n \"resetHeaders\": {\n \"description\": \"ResetHeaders specifies the list of headers (like Retry-After or X-RateLimit-Reset)\\nto match against the response. Headers are tried in order, and matched\\ncase-insensitive. The first header to be parsed successfully is used.\\nIf no headers match the default exponential BackOff is used instead.\",\n \"items\": {\n \"properties\": {\n \"format\": {\n \"description\": \"The format of the reset header.\",\n \"enum\": [\n \"Seconds\",\n \"UnixTimestamp\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The Name of the reset header.\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"format\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"retriableRequestHeaders\": {\n \"description\": \"RetriableRequestHeaders is an HTTP headers which must be present in the request\\nfor retries to be attempted.\",\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retriableResponseHeaders\": {\n \"description\": \"RetriableResponseHeaders is an HTTP response headers that trigger a retry\\nif present in the response. A retry will be triggered if any of the header\\nmatches the upstream response headers.\",\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryOn\": {\n \"description\": \"RetryOn is a list of conditions which will cause a retry. Available values are:\\n[5XX, GatewayError, Reset, Retriable4xx, ConnectFailure, EnvoyRatelimited,\\nRefusedStream, Http3PostConnectFailure, HttpMethodConnect, HttpMethodDelete,\\nHttpMethodGet, HttpMethodHead, HttpMethodOptions, HttpMethodPatch,\\nHttpMethodPost, HttpMethodPut, HttpMethodTrace].\\nAlso, any HTTP status code (500, 503, etc.).\",\n \"example\": [\n \"5XX\",\n \"GatewayError\",\n \"Reset\",\n \"Retriable4xx\",\n \"ConnectFailure\",\n \"EnvoyRatelimited\",\n \"RefusedStream\",\n \"Http3PostConnectFailure\",\n \"HttpMethodConnect\",\n \"HttpMethodDelete\",\n \"HttpMethodGet\",\n \"HttpMethodHead\",\n \"HttpMethodOptions\",\n \"HttpMethodPatch\",\n \"HttpMethodPost\",\n \"HttpMethodPut\",\n \"HttpMethodTrace\",\n \"500\",\n \"503\"\n ],\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCP defines a configuration of retries for TCP traffic\",\n \"properties\": {\n \"maxConnectAttempt\": {\n \"description\": \"MaxConnectAttempt is a maximal amount of TCP connection attempts\\nwhich will be made before giving up\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Retry\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Retry", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003492", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshService.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshService.json new file mode 100644 index 00000000000..be4a195e15d --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshService.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshService", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshService resource.\",\n \"properties\": {\n \"identities\": {\n \"items\": {\n \"properties\": {\n \"type\": {\n \"enum\": [\n \"ServiceTag\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"appProtocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol identifies a protocol supported by a service.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"port\",\n \"appProtocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"selector\": {\n \"properties\": {\n \"dataplaneRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataplaneTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTCPRoute.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTCPRoute.json new file mode 100644 index 00000000000..c1b9a13c379 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTCPRoute.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTCPRoute", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTCPRoute resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding\\nconfigurations\",\n \"items\": {\n \"properties\": {\n \"rules\": {\n \"description\": \"Rules contains the routing rules applies to a combination of top-level\\ntargetRef and the targetRef in this entry.\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default holds routing rules that can be merged with rules from other\\npolicies.\",\n \"properties\": {\n \"backendRefs\": {\n \"items\": {\n \"description\": \"BackendRef defines where to forward traffic.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"backendRefs\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"default\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 1,\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh TCP Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh TCP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003494", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTimeout.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTimeout.json new file mode 100644 index 00000000000..5cac7ce7331 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTimeout.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTimeout", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTimeout resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"connectionTimeout\": {\n \"description\": \"ConnectionTimeout specifies the amount of time proxy will wait for an TCP connection to be established.\\nDefault value is 5 seconds. Cannot be set to 0.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"Http provides configuration for HTTP specific timeouts\",\n \"properties\": {\n \"maxConnectionDuration\": {\n \"description\": \"MaxConnectionDuration is the time after which a connection will be drained and/or closed,\\nstarting from when it was first established. Setting this timeout to 0 will disable it.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"description\": \"MaxStreamDuration is the maximum time that a stream’s lifetime will span.\\nSetting this timeout to 0 will disable it. Disabled by default.\",\n \"type\": \"string\"\n },\n \"requestHeadersTimeout\": {\n \"description\": \"RequestHeadersTimeout The amount of time that proxy will wait for the request headers to be received. The timer is\\nactivated when the first byte of the headers is received, and is disarmed when the last byte of\\nthe headers has been received. If not specified or set to 0, this timeout is disabled.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout The amount of time that proxy will wait for the entire request to be received.\\nThe timer is activated when the request is initiated, and is disarmed when the last byte of the request is sent,\\nOR when the response is initiated. Setting this timeout to 0 will disable it.\\nDefault is 15s.\",\n \"type\": \"string\"\n },\n \"streamIdleTimeout\": {\n \"description\": \"StreamIdleTimeout is the amount of time that proxy will allow a stream to exist with no activity.\\nSetting this timeout to 0 will disable it. Default is 30m\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"description\": \"IdleTimeout is defined as the period in which there are no bytes sent or received on connection\\nSetting this timeout to 0 will disable it. Be cautious when disabling it because\\nit can lead to connection leaking. Default value is 1h.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"connectionTimeout\": {\n \"description\": \"ConnectionTimeout specifies the amount of time proxy will wait for an TCP connection to be established.\\nDefault value is 5 seconds. Cannot be set to 0.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"Http provides configuration for HTTP specific timeouts\",\n \"properties\": {\n \"maxConnectionDuration\": {\n \"description\": \"MaxConnectionDuration is the time after which a connection will be drained and/or closed,\\nstarting from when it was first established. Setting this timeout to 0 will disable it.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"description\": \"MaxStreamDuration is the maximum time that a stream’s lifetime will span.\\nSetting this timeout to 0 will disable it. Disabled by default.\",\n \"type\": \"string\"\n },\n \"requestHeadersTimeout\": {\n \"description\": \"RequestHeadersTimeout The amount of time that proxy will wait for the request headers to be received. The timer is\\nactivated when the first byte of the headers is received, and is disarmed when the last byte of\\nthe headers has been received. If not specified or set to 0, this timeout is disabled.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout The amount of time that proxy will wait for the entire request to be received.\\nThe timer is activated when the request is initiated, and is disarmed when the last byte of the request is sent,\\nOR when the response is initiated. Setting this timeout to 0 will disable it.\\nDefault is 15s.\",\n \"type\": \"string\"\n },\n \"streamIdleTimeout\": {\n \"description\": \"StreamIdleTimeout is the amount of time that proxy will allow a stream to exist with no activity.\\nSetting this timeout to 0 will disable it. Default is 30m\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"description\": \"IdleTimeout is defined as the period in which there are no bytes sent or received on connection\\nSetting this timeout to 0 will disable it. Be cautious when disabling it because\\nit can lead to connection leaking. Default value is 1h.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Timeout\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Timeout", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003496", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrace.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrace.json new file mode 100644 index 00000000000..e7a9a189e51 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrace.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTrace", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTrace resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshTrace configuration.\",\n \"properties\": {\n \"backends\": {\n \"description\": \"A one element array of backend definition.\\nEnvoy allows configuring only 1 backend, so the natural way of\\nrepresenting that would be just one object. Unfortunately due to the\\nreasons explained in MADR 009-tracing-policy this has to be a one element\\narray for now.\",\n \"items\": {\n \"description\": \"Only one of zipkin, datadog or openTelemetry can be used.\",\n \"properties\": {\n \"datadog\": {\n \"description\": \"Datadog backend configuration.\",\n \"properties\": {\n \"splitService\": {\n \"default\": false,\n \"description\": \"Determines if datadog service name should be split based on traffic\\ndirection and destination. For example, with `splitService: true` and a\\n`backend` service that communicates with a couple of databases, you would\\nget service names like `backend_INBOUND`, `backend_OUTBOUND_db1`, and\\n`backend_OUTBOUND_db2` in Datadog.\",\n \"type\": \"boolean\"\n },\n \"url\": {\n \"description\": \"Address of Datadog collector, only host and port are allowed (no paths,\\nfragments etc.)\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"OpenTelemetry backend configuration.\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Address of OpenTelemetry collector.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Zipkin\",\n \"Datadog\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n },\n \"zipkin\": {\n \"description\": \"Zipkin backend configuration.\",\n \"properties\": {\n \"apiVersion\": {\n \"default\": \"httpJson\",\n \"description\": \"Version of the API.\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/trace/v3/zipkin.proto#L66\",\n \"enum\": [\n \"httpJson\",\n \"httpProto\"\n ],\n \"type\": \"string\"\n },\n \"sharedSpanContext\": {\n \"default\": true,\n \"description\": \"Determines whether client and server spans will share the same span\\ncontext.\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/trace/v3/zipkin.proto#L63\",\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"default\": false,\n \"description\": \"Generate 128bit traces.\",\n \"type\": \"boolean\"\n },\n \"url\": {\n \"description\": \"Address of Zipkin collector.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 1,\n \"type\": \"array\"\n },\n \"sampling\": {\n \"description\": \"Sampling configuration.\\nSampling is the process by which a decision is made on whether to\\nprocess/export a span or not.\",\n \"properties\": {\n \"client\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests that will be force traced if the\\n'x-client-trace-id' header is set. Mirror of client_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L127-L133\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"overall\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests will be traced\\nafter all other sampling checks have been applied (client, force tracing,\\nrandom sampling). This field functions as an upper limit on the total\\nconfigured sampling rate. For instance, setting client_sampling to 100%\\nbut overall_sampling to 1% will result in only 1% of client requests with\\nthe appropriate headers to be force traced. Mirror of\\noverall_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L142-L150\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"random\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests that will be randomly selected for trace\\ngeneration, if not requested by the client or not forced.\\nMirror of random_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L135-L140\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Custom tags configuration. You can add custom tags to traces based on\\nheaders or literal values.\",\n \"items\": {\n \"description\": \"Custom tags configuration.\\nOnly one of literal or header can be used.\",\n \"properties\": {\n \"header\": {\n \"description\": \"Tag taken from a header.\",\n \"properties\": {\n \"default\": {\n \"description\": \"Default value to use if header is missing.\\nIf the default is missing and there is no value the tag will not be\\nincluded.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the header.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"literal\": {\n \"description\": \"Tag taken from literal value.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the tag.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Trace\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Trace", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003498", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrafficPermission.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrafficPermission.json new file mode 100644 index 00000000000..b019294d5c4 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/MeshTrafficPermission.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTrafficPermission", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTrafficPermission resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action defines a behavior for the specified group of clients:\",\n \"enum\": [\n \"Allow\",\n \"Deny\",\n \"AllowWithShadowDeny\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Traffic Permission\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Traffic Permission", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003493", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/OPAPolicy.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/OPAPolicy.json new file mode 100644 index 00000000000..cba052e4f8d --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/OPAPolicy.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OPAPolicy", + "schema": "{\n \"description\": \"OPAPolicy is the Schema for the opapolicy API\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"OPA Policy\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "OPA Policy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003459", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" width='45.3' height='40.8'\u003e\n\u003cstyle type=\"text/css\"\u003e\n\t.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\n\tL17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\n\th-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e\n\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ProxyTemplate.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ProxyTemplate.json new file mode 100644 index 00000000000..1463c9d0202 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ProxyTemplate.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ProxyTemplate", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ProxyTemplate resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Proxy Template\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Proxy Template", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003487", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/RateLimit.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/RateLimit.json new file mode 100644 index 00000000000..17beef3df71 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/RateLimit.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RateLimit", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma RateLimit resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Rate Limit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Rate Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003500", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Retry.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Retry.json new file mode 100644 index 00000000000..9baa44c9a96 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Retry.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Retry", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Retry resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Retry\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Retry", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003461", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ServiceInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ServiceInsight.json new file mode 100644 index 00000000000..37660245d6a --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ServiceInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ServiceInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ServiceInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Service Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003462", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Timeout.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Timeout.json new file mode 100644 index 00000000000..ac2434d8fea --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Timeout.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Timeout", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Timeout resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Timeout\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Timeout", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003480", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficLog.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficLog.json new file mode 100644 index 00000000000..aea9a166f50 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficLog.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficLog", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficLog resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Log\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Log", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003465", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficPermission.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficPermission.json new file mode 100644 index 00000000000..6e4204630e0 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficPermission.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficPermission", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficPermission resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Permission\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Permission", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003473", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficRoute.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficRoute.json new file mode 100644 index 00000000000..43603f73346 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficRoute.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficRoute", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficRoute resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003499", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficTrace.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficTrace.json new file mode 100644 index 00000000000..1812f235e64 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/TrafficTrace.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficTrace", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficTrace resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Trace\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Trace", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003475", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/VirtualOutbound.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/VirtualOutbound.json new file mode 100644 index 00000000000..84614be6c6a --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/VirtualOutbound.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VirtualOutbound", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma VirtualOutbound resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Virtual Outbound\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Virtual Outbound", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003483", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Zone.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Zone.json new file mode 100644 index 00000000000..bead146d605 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/Zone.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Zone", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Zone resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003469", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgress.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgress.json new file mode 100644 index 00000000000..138a7b2b12b --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgress.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneEgress", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneEgress resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Egress\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Egress", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003495", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgressInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgressInsight.json new file mode 100644 index 00000000000..f1e4a1ebb51 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneEgressInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneEgressInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneEgressInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Egress Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Egress Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003476", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngress.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngress.json new file mode 100644 index 00000000000..a46294ab0b9 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngress.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneIngress", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneIngress resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Ingress\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Ingress", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003479", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngressInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngressInsight.json new file mode 100644 index 00000000000..3c19bc4ae40 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneIngressInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneIngressInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneIngressInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Ingress Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Ingress Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003460", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneInsight.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneInsight.json new file mode 100644 index 00000000000..81c26465a77 --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/components/ZoneInsight.json @@ -0,0 +1,193 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "source_uri": "https://github.com/Kong/kong-mesh-charts/releases/download/kong-mesh-2.8.3/kong-mesh-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#003491", + "shape": "circle", + "svgColor": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\"\u003e \u003cstyle type=\"text/css\"\u003e .st0{fill:#FFFFFF;} \u003c/style\u003e \u003cpath class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2 L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32 h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"/\u003e \u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kong-mesh/2.8.3/v1.0.0/model.json b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/model.json new file mode 100644 index 00000000000..e2177c351ad --- /dev/null +++ b/server/meshmodel/kong-mesh/2.8.3/v1.0.0/model.json @@ -0,0 +1,41 @@ +{ + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kong Mesh", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#003459", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#003459;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA; L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA; h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" id=\"Layer_1\" xmlns:_xmlns=\"xmlns\" _xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 45.3 40.8\" style=\"enable-background:new 0 0 45.3 40.8;\" xml:space=\"preserve\" height=\"20\" width=\"20\"\u003e\n\u003cstyle xmlns=\"http://www.w3.org/2000/svg\" type=\"text/css\"\u003e\n\u0026#x9;.st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"st0\" d=\"M14.9,33.6h8.3l4.3,5.4l-0.7,1.9H16l0.3-1.9l-2.5-4L14.9,33.6z M20.8,9.7h4.5l20,23.9l-1.6,7.3h-8.6l0.5-2\u0026#xA;\u0026#x9;L17,16.5L20.8,9.7z M28.7,0L38,7.3l-1.2,1.2l1.6,2.2v2.4L33.8,17L26,7.8h-4.5l1.8-3.4L28.7,0z M9.1,23.4l6.5-5.6l8.6,10.4L21.8,32\u0026#xA;\u0026#x9;h-7.9l-5.5,7.2l-1.3,1.7H0V32l6.6-8.6H9.1z\"\u003e\u003c/path\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "2.8.3" + }, + "name": "kong-mesh", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/kubeapps/16.0.1/v1.0.0/components/AppRepository.json b/server/meshmodel/kubeapps/16.0.1/v1.0.0/components/AppRepository.json new file mode 100644 index 00000000000..4564ed51392 --- /dev/null +++ b/server/meshmodel/kubeapps/16.0.1/v1.0.0/components/AppRepository.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "AppRepository", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"auth\": {\n \"properties\": {\n \"customCA\": {\n \"properties\": {\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"secretKeyRef\"\n ],\n \"type\": \"object\"\n },\n \"header\": {\n \"properties\": {\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"secretKeyRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"dockerRegistrySecrets\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"filterRule\": {\n \"properties\": {\n \"jq\": {\n \"type\": \"string\"\n },\n \"variables\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"interval\": {\n \"type\": \"string\"\n },\n \"ociRepositories\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"passCredentials\": {\n \"type\": \"boolean\"\n },\n \"resyncRequests\": {\n \"type\": \"integer\"\n },\n \"syncJobPodTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsInsecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"type\": {\n \"enum\": [\n \"helm\",\n \"oci\"\n ],\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\",\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"App Repository\",\n \"type\": \"object\"\n}", + "version": "kubeapps.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "App Repository", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://charts.bitnami.com/bitnami/kubeapps-16.0.1.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "Kubeapps", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://charts.bitnami.com/bitnami/kubeapps-16.0.1.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "16.0.1" + }, + "name": "kubeapps", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kubeapps/16.0.1/v1.0.0/model.json b/server/meshmodel/kubeapps/16.0.1/v1.0.0/model.json new file mode 100644 index 00000000000..61c64b2147c --- /dev/null +++ b/server/meshmodel/kubeapps/16.0.1/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Uncategorized" + }, + "displayName": "Kubeapps", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "16.0.1" + }, + "name": "kubeapps", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/CircuitBreaker.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/CircuitBreaker.json new file mode 100644 index 00000000000..affd759cfa4 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/CircuitBreaker.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CircuitBreaker", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma CircuitBreaker resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Circuit Breaker\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Circuit Breaker", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ContainerPatch.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ContainerPatch.json new file mode 100644 index 00000000000..33f56a75ea7 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ContainerPatch.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ContainerPatch", + "schema": "{\n \"description\": \"ContainerPatch stores a list of patches to apply to init and sidecar containers.\",\n \"properties\": {\n \"mesh\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"ContainerPatchSpec specifies the options available for a ContainerPatch\",\n \"properties\": {\n \"initPatch\": {\n \"description\": \"InitPatch specifies jsonpatch to apply to an init container.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a string representing a valid json object used\\nby replace and add operations. String has to be escaped with \\\" to be valid a json object.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sidecarPatch\": {\n \"description\": \"SidecarPatch specifies jsonpatch to apply to a sidecar container.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a string representing a valid json object used\\nby replace and add operations. String has to be escaped with \\\" to be valid a json object.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Container Patch\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Container Patch", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/Dataplane.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Dataplane.json new file mode 100644 index 00000000000..ad980a661c5 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Dataplane.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Dataplane", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Dataplane resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Dataplane\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Dataplane", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/DataplaneInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/DataplaneInsight.json new file mode 100644 index 00000000000..a29924f95ea --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/DataplaneInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "DataplaneInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Dataplane Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Dataplane Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ExternalService.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ExternalService.json new file mode 100644 index 00000000000..9e01ee46e8b --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ExternalService.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ExternalService", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ExternalService resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"External Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "External Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/FaultInjection.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/FaultInjection.json new file mode 100644 index 00000000000..a1066277b77 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/FaultInjection.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "FaultInjection", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma FaultInjection resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Fault Injection\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Fault Injection", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/HealthCheck.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/HealthCheck.json new file mode 100644 index 00000000000..b9eb01d9e7d --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/HealthCheck.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HealthCheck", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma HealthCheck resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Health Check\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Health Check", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/HostnameGenerator.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/HostnameGenerator.json new file mode 100644 index 00000000000..a001ef82b05 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/HostnameGenerator.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "HostnameGenerator", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma HostnameGenerator resource.\",\n \"properties\": {\n \"selector\": {\n \"properties\": {\n \"meshExternalService\": {\n \"properties\": {\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"meshService\": {\n \"properties\": {\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Hostname Generator\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Hostname Generator", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/Mesh.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Mesh.json new file mode 100644 index 00000000000..b85947e89c6 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Mesh.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Mesh", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Mesh resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshAccessLog.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshAccessLog.json new file mode 100644 index 00000000000..f390e524c4d --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshAccessLog.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshAccessLog", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshAccessLog resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"backends\": {\n \"items\": {\n \"properties\": {\n \"file\": {\n \"description\": \"FileBackend defines configuration for file based access logs\",\n \"properties\": {\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"Path to a file that logs will be written to\",\n \"example\": \"/tmp/access.log\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"Defines an OpenTelemetry logging backend.\",\n \"properties\": {\n \"attributes\": {\n \"description\": \"Attributes can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": [\n {\n \"key\": \"mesh\",\n \"value\": \"%KUMA_MESH%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"body\": {\n \"description\": \"Body is a raw string or an OTLP any value as described at\\nhttps://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#field-body\\nIt can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": {\n \"kvlistValue\": {\n \"values\": [\n {\n \"key\": \"mesh\",\n \"value\": {\n \"stringValue\": \"%KUMA_MESH%\"\n }\n }\n ]\n }\n },\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"endpoint\": {\n \"description\": \"Endpoint of OpenTelemetry collector. An empty port defaults to 4317.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCPBackend defines a TCP logging backend.\",\n \"properties\": {\n \"address\": {\n \"description\": \"Address of the TCP logging backend\",\n \"example\": \"127.0.0.1:5000\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Tcp\",\n \"File\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"backends\": {\n \"items\": {\n \"properties\": {\n \"file\": {\n \"description\": \"FileBackend defines configuration for file based access logs\",\n \"properties\": {\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"Path to a file that logs will be written to\",\n \"example\": \"/tmp/access.log\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"Defines an OpenTelemetry logging backend.\",\n \"properties\": {\n \"attributes\": {\n \"description\": \"Attributes can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": [\n {\n \"key\": \"mesh\",\n \"value\": \"%KUMA_MESH%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"body\": {\n \"description\": \"Body is a raw string or an OTLP any value as described at\\nhttps://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#field-body\\nIt can contain placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"example\": {\n \"kvlistValue\": {\n \"values\": [\n {\n \"key\": \"mesh\",\n \"value\": {\n \"stringValue\": \"%KUMA_MESH%\"\n }\n }\n ]\n }\n },\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"endpoint\": {\n \"description\": \"Endpoint of OpenTelemetry collector. An empty port defaults to 4317.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCPBackend defines a TCP logging backend.\",\n \"properties\": {\n \"address\": {\n \"description\": \"Address of the TCP logging backend\",\n \"example\": \"127.0.0.1:5000\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"format\": {\n \"description\": \"Format of access logs. Placeholders available on\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/observability/access_log/usage#command-operators\",\n \"properties\": {\n \"json\": {\n \"example\": [\n {\n \"key\": \"start_time\",\n \"value\": \"%START_TIME%\"\n },\n {\n \"key\": \"bytes_received\",\n \"value\": \"%BYTES_RECEIVED%\"\n }\n ],\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"omitEmptyValues\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"plain\": {\n \"example\": \"[%START_TIME%] %KUMA_MESH% %UPSTREAM_HOST%\",\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Plain\",\n \"Json\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Tcp\",\n \"File\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Access Log\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Access Log", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshCircuitBreaker.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshCircuitBreaker.json new file mode 100644 index 00000000000..9d6c473456e --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshCircuitBreaker.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshCircuitBreaker", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshCircuitBreaker resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'\",\n \"properties\": {\n \"connectionLimits\": {\n \"description\": \"ConnectionLimits contains configuration of each circuit breaking limit,\\nwhich when exceeded makes the circuit breaker to become open (no traffic\\nis allowed like no current is allowed in the circuits when physical\\ncircuit breaker ir open)\",\n \"properties\": {\n \"maxConnectionPools\": {\n \"description\": \"The maximum number of connection pools per cluster that are concurrently\\nsupported at once. Set this for clusters which create a large number of\\nconnection pools.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections allowed to be made to the upstream\\ncluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of pending requests that are allowed to the upstream\\ncluster. This limit is applied as a connection limit for non-HTTP\\ntraffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"description\": \"The maximum number of parallel requests that are allowed to be made\\nto the upstream cluster. This limit does not apply to non-HTTP traffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"description\": \"The maximum number of parallel retries that will be allowed to\\nthe upstream cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"outlierDetection\": {\n \"description\": \"OutlierDetection contains the configuration of the process of dynamically\\ndetermining whether some number of hosts in an upstream cluster are\\nperforming unlike the others and removing them from the healthy load\\nbalancing set. Performance might be along different axes such as\\nconsecutive failures, temporal success rate, temporal latency, etc.\\nOutlier detection is a form of passive health checking.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to\\nthe base time multiplied by the number of times the host has been\\nejected.\",\n \"type\": \"string\"\n },\n \"detectors\": {\n \"description\": \"Contains configuration for supported outlier detectors\",\n \"properties\": {\n \"failurePercentage\": {\n \"description\": \"Failure Percentage based outlier detection functions similarly to success\\nrate detection, in that it relies on success rate data from each host in\\na cluster. However, rather than compare those values to the mean success\\nrate of the cluster as a whole, they are compared to a flat\\nuser-configured threshold. This threshold is configured via the\\noutlierDetection.failurePercentageThreshold field.\\nThe other configuration fields for failure percentage based detection are\\nsimilar to the fields for success rate detection. As with success rate\\ndetection, detection will not be performed for a host if its request\\nvolume over the aggregation interval is less than the\\noutlierDetection.detectors.failurePercentage.requestVolume value.\\nDetection also will not be performed for a cluster if the number of hosts\\nwith the minimum required request volume in an interval is less than the\\noutlierDetection.detectors.failurePercentage.minimumHosts value.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The minimum number of hosts in a cluster in order to perform failure\\npercentage-based ejection. If the total number of hosts in the cluster is\\nless than this value, failure percentage-based ejection will not be\\nperformed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration above) to perform failure\\npercentage-based ejection for this host. If the volume is lower than this\\nsetting, failure percentage-based ejection will not be performed for this\\nhost.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"threshold\": {\n \"description\": \"The failure percentage to use when determining failure percentage-based\\noutlier detection. If the failure percentage of a given host is greater\\nthan or equal to this value, it will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"gatewayFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalLocalOriginErrors is\\nfalse) this detection type takes into account a subset of 5xx errors,\\ncalled \\\"gateway errors\\\" (502, 503 or 504 status code) and local origin\\nfailures, such as timeout, TCP reset etc.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account a subset of 5xx errors, called\\n\\\"gateway errors\\\" (502, 503 or 504 status code) and is supported only by\\nthe http router.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive gateway failures (502, 503, 504 status codes)\\nbefore a consecutive gateway failure ejection occurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localOriginFailures\": {\n \"description\": \"This detection type is enabled only when\\noutlierDetection.splitExternalLocalOriginErrors is true and takes into\\naccount only locally originated errors (timeout, reset, etc).\\nIf Envoy repeatedly cannot connect to an upstream host or communication\\nwith the upstream host is repeatedly interrupted, it will be ejected.\\nVarious locally originated problems are detected: timeout, TCP reset,\\nICMP errors, etc. This detection type is supported by http router and\\ntcp proxy.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive locally originated failures before ejection\\noccurs. Parameter takes effect only when splitExternalAndLocalErrors\\nis set to true.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"successRate\": {\n \"description\": \"Success Rate based outlier detection aggregates success rate data from\\nevery host in a cluster. Then at given intervals ejects hosts based on\\nstatistical outlier detection. Success Rate outlier detection will not be\\ncalculated for a host if its request volume over the aggregation interval\\nis less than the outlierDetection.detectors.successRate.requestVolume\\nvalue.\\nMoreover, detection will not be performed for a cluster if the number of\\nhosts with the minimum required request volume in an interval is less\\nthan the outlierDetection.detectors.successRate.minimumHosts value.\\nIn the default configuration mode\\n(outlierDetection.splitExternalLocalOriginErrors is false) this detection\\ntype takes into account all types of errors: locally and externally\\noriginated.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true),\\nlocally originated errors and externally originated (transaction) errors\\nare counted and treated separately.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The number of hosts in a cluster that must have enough request volume to\\ndetect success rate outliers. If the number of hosts is less than this\\nsetting, outlier detection via success rate statistics is not performed\\nfor any host in the cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration configured in\\noutlierDetection section) to include this host in success rate based\\noutlier detection. If the volume is lower than this setting, outlier\\ndetection via success rate statistics is not performed for that host.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"standardDeviationFactor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"This factor is used to determine the ejection threshold for success rate\\noutlier ejection. The ejection threshold is the difference between\\nthe mean success rate, and the product of this factor and the standard\\ndeviation of the mean success rate: mean - (standard_deviation *\\nsuccess_rate_standard_deviation_factor).\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"totalFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalAndLocalErrors is\\nfalse) this detection type takes into account all generated errors:\\nlocally originated and externally originated (transaction) errors.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account only externally originated\\n(transaction) errors, ignoring locally originated errors.\\nIf an upstream host is an HTTP-server, only 5xx types of error are taken\\ninto account (see Consecutive Gateway Failure for exceptions).\\nProperly formatted responses, even when they carry an operational error\\n(like index not found, access denied) are not taken into account.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive server-side error responses (for HTTP traffic,\\n5xx responses; for TCP traffic, connection failures; for Redis, failure\\nto respond PONG; etc.) before a consecutive total failure ejection\\noccurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"When set to true, outlierDetection configuration won't take any effect\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"The time interval between ejection analysis sweeps. This can result in\\nboth new ejections and hosts being returned to service.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier\\ndetection. Defaults to 10% but will eject at least one host regardless of\\nthe value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"splitExternalAndLocalErrors\": {\n \"description\": \"Determines whether to distinguish local origin failures from external\\nerrors. If set to true the following configuration parameters are taken\\ninto account: detectors.localOriginFailures.consecutive\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding\\nconfigurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'\",\n \"properties\": {\n \"connectionLimits\": {\n \"description\": \"ConnectionLimits contains configuration of each circuit breaking limit,\\nwhich when exceeded makes the circuit breaker to become open (no traffic\\nis allowed like no current is allowed in the circuits when physical\\ncircuit breaker ir open)\",\n \"properties\": {\n \"maxConnectionPools\": {\n \"description\": \"The maximum number of connection pools per cluster that are concurrently\\nsupported at once. Set this for clusters which create a large number of\\nconnection pools.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxConnections\": {\n \"description\": \"The maximum number of connections allowed to be made to the upstream\\ncluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxPendingRequests\": {\n \"description\": \"The maximum number of pending requests that are allowed to the upstream\\ncluster. This limit is applied as a connection limit for non-HTTP\\ntraffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRequests\": {\n \"description\": \"The maximum number of parallel requests that are allowed to be made\\nto the upstream cluster. This limit does not apply to non-HTTP traffic.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxRetries\": {\n \"description\": \"The maximum number of parallel retries that will be allowed to\\nthe upstream cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"outlierDetection\": {\n \"description\": \"OutlierDetection contains the configuration of the process of dynamically\\ndetermining whether some number of hosts in an upstream cluster are\\nperforming unlike the others and removing them from the healthy load\\nbalancing set. Performance might be along different axes such as\\nconsecutive failures, temporal success rate, temporal latency, etc.\\nOutlier detection is a form of passive health checking.\",\n \"properties\": {\n \"baseEjectionTime\": {\n \"description\": \"The base time that a host is ejected for. The real time is equal to\\nthe base time multiplied by the number of times the host has been\\nejected.\",\n \"type\": \"string\"\n },\n \"detectors\": {\n \"description\": \"Contains configuration for supported outlier detectors\",\n \"properties\": {\n \"failurePercentage\": {\n \"description\": \"Failure Percentage based outlier detection functions similarly to success\\nrate detection, in that it relies on success rate data from each host in\\na cluster. However, rather than compare those values to the mean success\\nrate of the cluster as a whole, they are compared to a flat\\nuser-configured threshold. This threshold is configured via the\\noutlierDetection.failurePercentageThreshold field.\\nThe other configuration fields for failure percentage based detection are\\nsimilar to the fields for success rate detection. As with success rate\\ndetection, detection will not be performed for a host if its request\\nvolume over the aggregation interval is less than the\\noutlierDetection.detectors.failurePercentage.requestVolume value.\\nDetection also will not be performed for a cluster if the number of hosts\\nwith the minimum required request volume in an interval is less than the\\noutlierDetection.detectors.failurePercentage.minimumHosts value.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The minimum number of hosts in a cluster in order to perform failure\\npercentage-based ejection. If the total number of hosts in the cluster is\\nless than this value, failure percentage-based ejection will not be\\nperformed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration above) to perform failure\\npercentage-based ejection for this host. If the volume is lower than this\\nsetting, failure percentage-based ejection will not be performed for this\\nhost.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"threshold\": {\n \"description\": \"The failure percentage to use when determining failure percentage-based\\noutlier detection. If the failure percentage of a given host is greater\\nthan or equal to this value, it will be ejected.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"gatewayFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalLocalOriginErrors is\\nfalse) this detection type takes into account a subset of 5xx errors,\\ncalled \\\"gateway errors\\\" (502, 503 or 504 status code) and local origin\\nfailures, such as timeout, TCP reset etc.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account a subset of 5xx errors, called\\n\\\"gateway errors\\\" (502, 503 or 504 status code) and is supported only by\\nthe http router.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive gateway failures (502, 503, 504 status codes)\\nbefore a consecutive gateway failure ejection occurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"localOriginFailures\": {\n \"description\": \"This detection type is enabled only when\\noutlierDetection.splitExternalLocalOriginErrors is true and takes into\\naccount only locally originated errors (timeout, reset, etc).\\nIf Envoy repeatedly cannot connect to an upstream host or communication\\nwith the upstream host is repeatedly interrupted, it will be ejected.\\nVarious locally originated problems are detected: timeout, TCP reset,\\nICMP errors, etc. This detection type is supported by http router and\\ntcp proxy.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive locally originated failures before ejection\\noccurs. Parameter takes effect only when splitExternalAndLocalErrors\\nis set to true.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"successRate\": {\n \"description\": \"Success Rate based outlier detection aggregates success rate data from\\nevery host in a cluster. Then at given intervals ejects hosts based on\\nstatistical outlier detection. Success Rate outlier detection will not be\\ncalculated for a host if its request volume over the aggregation interval\\nis less than the outlierDetection.detectors.successRate.requestVolume\\nvalue.\\nMoreover, detection will not be performed for a cluster if the number of\\nhosts with the minimum required request volume in an interval is less\\nthan the outlierDetection.detectors.successRate.minimumHosts value.\\nIn the default configuration mode\\n(outlierDetection.splitExternalLocalOriginErrors is false) this detection\\ntype takes into account all types of errors: locally and externally\\noriginated.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true),\\nlocally originated errors and externally originated (transaction) errors\\nare counted and treated separately.\",\n \"properties\": {\n \"minimumHosts\": {\n \"description\": \"The number of hosts in a cluster that must have enough request volume to\\ndetect success rate outliers. If the number of hosts is less than this\\nsetting, outlier detection via success rate statistics is not performed\\nfor any host in the cluster.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"requestVolume\": {\n \"description\": \"The minimum number of total requests that must be collected in one\\ninterval (as defined by the interval duration configured in\\noutlierDetection section) to include this host in success rate based\\noutlier detection. If the volume is lower than this setting, outlier\\ndetection via success rate statistics is not performed for that host.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"standardDeviationFactor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"This factor is used to determine the ejection threshold for success rate\\noutlier ejection. The ejection threshold is the difference between\\nthe mean success rate, and the product of this factor and the standard\\ndeviation of the mean success rate: mean - (standard_deviation *\\nsuccess_rate_standard_deviation_factor).\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"totalFailures\": {\n \"description\": \"In the default mode (outlierDetection.splitExternalAndLocalErrors is\\nfalse) this detection type takes into account all generated errors:\\nlocally originated and externally originated (transaction) errors.\\nIn split mode (outlierDetection.splitExternalLocalOriginErrors is true)\\nthis detection type takes into account only externally originated\\n(transaction) errors, ignoring locally originated errors.\\nIf an upstream host is an HTTP-server, only 5xx types of error are taken\\ninto account (see Consecutive Gateway Failure for exceptions).\\nProperly formatted responses, even when they carry an operational error\\n(like index not found, access denied) are not taken into account.\",\n \"properties\": {\n \"consecutive\": {\n \"description\": \"The number of consecutive server-side error responses (for HTTP traffic,\\n5xx responses; for TCP traffic, connection failures; for Redis, failure\\nto respond PONG; etc.) before a consecutive total failure ejection\\noccurs.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"When set to true, outlierDetection configuration won't take any effect\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"The time interval between ejection analysis sweeps. This can result in\\nboth new ejections and hosts being returned to service.\",\n \"type\": \"string\"\n },\n \"maxEjectionPercent\": {\n \"description\": \"The maximum % of an upstream cluster that can be ejected due to outlier\\ndetection. Defaults to 10% but will eject at least one host regardless of\\nthe value.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"splitExternalAndLocalErrors\": {\n \"description\": \"Determines whether to distinguish local origin failures from external\\nerrors. If set to true the following configuration parameters are taken\\ninto account: detectors.localOriginFailures.consecutive\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Circuit Breaker\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Circuit Breaker", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshExternalService.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshExternalService.json new file mode 100644 index 00000000000..ac4dac3af5b --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshExternalService.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshExternalService", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshExternalService resource.\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"Endpoints defines a list of destinations to send traffic to.\",\n \"items\": {\n \"properties\": {\n \"address\": {\n \"description\": \"Address defines an address to which a user want to send a request. Is possible to provide `domain`, `ip` and `unix` sockets.\",\n \"example\": \"unix:///tmp/example.sock\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port of the endpoint\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"address\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"extension\": {\n \"description\": \"Extension struct for a plugin configuration, in the presence of an extension `endpoints` and `tls` are not required anymore - it's up to the extension to validate them independently.\",\n \"properties\": {\n \"config\": {\n \"description\": \"Config freeform configuration for the extension.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of the extension.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"config\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match defines traffic that should be routed through the sidecar.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port defines a port to which a user does request.\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol defines a protocol of the communication. Possible values: `tcp`, `grpc`, `http`, `http2`.\",\n \"enum\": [\n \"tcp\",\n \"grpc\",\n \"http\",\n \"http2\"\n ],\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"HostnameGenerator\",\n \"description\": \"Type of the match, only `HostnameGenerator` is available at the moment.\",\n \"enum\": [\n \"HostnameGenerator\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tls\": {\n \"description\": \"Tls provides a TLS configuration when proxy is resposible for a TLS origination\",\n \"properties\": {\n \"allowRenegotiation\": {\n \"default\": false,\n \"description\": \"AllowRenegotiation defines if TLS sessions will allow renegotiation.\\nSetting this to true is not recommended for security reasons.\",\n \"type\": \"boolean\"\n },\n \"enabled\": {\n \"default\": false,\n \"description\": \"Enabled defines if proxy should originate TLS.\",\n \"type\": \"boolean\"\n },\n \"verification\": {\n \"description\": \"Verification section for providing TLS verification details.\",\n \"properties\": {\n \"caCert\": {\n \"description\": \"CaCert defines a certificate of CA.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"clientCert\": {\n \"description\": \"ClientCert defines a certificate of a client.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"clientKey\": {\n \"description\": \"ClientKey defines a client private key.\",\n \"properties\": {\n \"inline\": {\n \"description\": \"Data source is inline bytes.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"inlineString\": {\n \"description\": \"Data source is inline string`\",\n \"type\": \"string\"\n },\n \"secret\": {\n \"description\": \"Data source is a secret with given Secret key.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"mode\": {\n \"default\": \"Secured\",\n \"description\": \"Mode defines if proxy should skip verification, one of `SkipSAN`, `SkipCA`, `Secured`, `SkipAll`. Default `Secured`.\",\n \"enum\": [\n \"SkipSAN\",\n \"SkipCA\",\n \"Secured\",\n \"SkipAll\"\n ],\n \"type\": \"string\"\n },\n \"serverName\": {\n \"description\": \"ServerName overrides the default Server Name Indicator set by Kuma.\",\n \"type\": \"string\"\n },\n \"subjectAltNames\": {\n \"description\": \"SubjectAltNames list of names to verify in the certificate.\",\n \"items\": {\n \"properties\": {\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies matching type, one of `Exact`, `Prefix`. Default: `Exact`\",\n \"enum\": [\n \"Exact\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value to match.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"version\": {\n \"description\": \"Version section for providing version specification.\",\n \"properties\": {\n \"max\": {\n \"default\": \"TLSAuto\",\n \"description\": \"Max defines maximum supported version. One of `TLSAuto`, `TLS10`, `TLS11`, `TLS12`, `TLS13`.\",\n \"enum\": [\n \"TLSAuto\",\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"min\": {\n \"default\": \"TLSAuto\",\n \"description\": \"Min defines minimum supported version. One of `TLSAuto`, `TLS10`, `TLS11`, `TLS12`, `TLS13`.\",\n \"enum\": [\n \"TLSAuto\",\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"match\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh External Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh External Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshFaultInjection.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshFaultInjection.json new file mode 100644 index 00000000000..d5cb0ec2093 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshFaultInjection.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshFaultInjection", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshFaultInjection resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"http\": {\n \"description\": \"Http allows to define list of Http faults between dataplanes.\",\n \"items\": {\n \"description\": \"FaultInjection defines the configuration of faults between dataplanes.\",\n \"properties\": {\n \"abort\": {\n \"description\": \"Abort defines a configuration of not delivering requests to destination\\nservice and replacing the responses from destination dataplane by\\npredefined status code\",\n \"properties\": {\n \"httpStatus\": {\n \"description\": \"HTTP status code which will be returned to source side\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which abort will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"httpStatus\",\n \"percentage\"\n ],\n \"type\": \"object\"\n },\n \"delay\": {\n \"description\": \"Delay defines configuration of delaying a response from a destination\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which delay will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"description\": \"The duration during which the response will be delayed\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"percentage\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"responseBandwidth\": {\n \"description\": \"ResponseBandwidth defines a configuration to limit the speed of\\nresponding to the requests\",\n \"properties\": {\n \"limit\": {\n \"description\": \"Limit is represented by value measure in Gbps, Mbps, kbps, e.g.\\n10kbps\",\n \"type\": \"string\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which response bandwidth limit will be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"limit\",\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"http\": {\n \"description\": \"Http allows to define list of Http faults between dataplanes.\",\n \"items\": {\n \"description\": \"FaultInjection defines the configuration of faults between dataplanes.\",\n \"properties\": {\n \"abort\": {\n \"description\": \"Abort defines a configuration of not delivering requests to destination\\nservice and replacing the responses from destination dataplane by\\npredefined status code\",\n \"properties\": {\n \"httpStatus\": {\n \"description\": \"HTTP status code which will be returned to source side\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which abort will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"httpStatus\",\n \"percentage\"\n ],\n \"type\": \"object\"\n },\n \"delay\": {\n \"description\": \"Delay defines configuration of delaying a response from a destination\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which delay will be injected, has to be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"value\": {\n \"description\": \"The duration during which the response will be delayed\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"percentage\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"responseBandwidth\": {\n \"description\": \"ResponseBandwidth defines a configuration to limit the speed of\\nresponding to the requests\",\n \"properties\": {\n \"limit\": {\n \"description\": \"Limit is represented by value measure in Gbps, Mbps, kbps, e.g.\\n10kbps\",\n \"type\": \"string\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests on which response bandwidth limit will be\\neither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"limit\",\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Fault Injection\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Fault Injection", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGateway.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGateway.json new file mode 100644 index 00000000000..5481fa8bfc2 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGateway.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGateway", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshGateway resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Gateway\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayInstance.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayInstance.json new file mode 100644 index 00000000000..45b5103d767 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayInstance.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGatewayInstance", + "schema": "{\n \"description\": \"MeshGatewayInstance represents a managed instance of a dataplane proxy for a Kuma\\nGateway.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"MeshGatewayInstanceSpec specifies the options available for a GatewayDataplane.\",\n \"properties\": {\n \"podTemplate\": {\n \"description\": \"PodTemplate configures the Pod owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Pod.\",\n \"properties\": {\n \"container\": {\n \"description\": \"Container corresponds to PodSpec.Container\",\n \"properties\": {\n \"securityContext\": {\n \"description\": \"ContainerSecurityContext corresponds to PodSpec.Container.SecurityContext\",\n \"properties\": {\n \"readOnlyRootFilesystem\": {\n \"description\": \"ReadOnlyRootFilesystem corresponds to PodSpec.Container.SecurityContext.ReadOnlyRootFilesystem\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"PodSecurityContext corresponds to PodSpec.SecurityContext\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"FSGroup corresponds to PodSpec.SecurityContext.FSGroup\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName corresponds to PodSpec.ServiceAccountName.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"replicas\": {\n \"default\": 1,\n \"description\": \"Replicas is the number of dataplane proxy replicas to create. For\\nnow this is a fixed number, but in the future it could be\\nautomatically scaled based on metrics.\",\n \"format\": \"int32\",\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources specifies the compute resources for the proxy container.\\nThe default can be set in the control plane config.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceTemplate\": {\n \"description\": \"ServiceTemplate configures the Service owned by this config.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Metadata holds metadata configuration for a Service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations holds annotations to be set on an object.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels holds labels to be set on an objects.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec holds some customizable fields of a Service.\",\n \"properties\": {\n \"loadBalancerIP\": {\n \"description\": \"LoadBalancerIP corresponds to ServiceSpec.LoadBalancerIP.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceType\": {\n \"default\": \"LoadBalancer\",\n \"description\": \"ServiceType specifies the type of managed Service that will be\\ncreated to expose the dataplane proxies to traffic from outside\\nthe cluster. The ports to expose will be taken from the matching Gateway\\nresource. If there is no matching Gateway, the managed Service will\\nbe deleted.\",\n \"enum\": [\n \"LoadBalancer\",\n \"ClusterIP\",\n \"NodePort\"\n ],\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags specifies the Kuma tags that are propagated to the managed\\ndataplane proxies. These tags should include exactly one\\n`kuma.io/service` tag, and should match exactly one Gateway\\nresource.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Gateway Instance\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway Instance", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayRoute.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayRoute.json new file mode 100644 index 00000000000..f56c087b236 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshGatewayRoute.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshGatewayRoute", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshGatewayRoute resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Gateway Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Gateway Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHTTPRoute.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHTTPRoute.json new file mode 100644 index 00000000000..36d804b9d1a --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHTTPRoute.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshHTTPRoute", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshHTTPRoute resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To matches destination services of requests and holds configuration.\",\n \"items\": {\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames is only valid when targeting MeshGateway and limits the\\neffects of the rules to requests to this hostname.\\nGiven hostnames must intersect with the hostname of the listeners the\\nroute attaches to.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"rules\": {\n \"description\": \"Rules contains the routing rules applies to a combination of top-level\\ntargetRef and the targetRef in this entry.\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default holds routing rules that can be merged with rules from other\\npolicies.\",\n \"properties\": {\n \"backendRefs\": {\n \"items\": {\n \"description\": \"BackendRef defines where to forward traffic.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"filters\": {\n \"items\": {\n \"properties\": {\n \"requestHeaderModifier\": {\n \"description\": \"Only one action is supported per header name.\\nConfiguration to set or add multiple values for a header must use RFC 7230\\nheader value formatting, separating each value with a comma.\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"remove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"maxItems\": 16,\n \"type\": \"array\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"requestMirror\": {\n \"properties\": {\n \"backendRef\": {\n \"description\": \"TODO forbid weight\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Percentage of requests to mirror. If not specified, all requests\\nto the target cluster will be mirrored.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"backendRef\"\n ],\n \"type\": \"object\"\n },\n \"requestRedirect\": {\n \"properties\": {\n \"hostname\": {\n \"description\": \"PreciseHostname is the fully qualified domain name of a network host. This\\nmatches the RFC 1123 definition of a hostname with 1 notable exception that\\nnumeric IP addresses are not allowed.\\n\\n\\nNote that as per RFC1035 and RFC1123, a *label* must consist of lower case\\nalphanumeric characters or '-', and must start and end with an alphanumeric\\ncharacter. No other punctuation is allowed.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path defines parameters used to modify the path of the incoming request.\\nThe modified path is then used to construct the location header.\\nWhen empty, the request path is used as-is.\",\n \"properties\": {\n \"replaceFullPath\": {\n \"type\": \"string\"\n },\n \"replacePrefixMatch\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"ReplaceFullPath\",\n \"ReplacePrefixMatch\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port is the port to be used in the value of the `Location`\\nheader in the response.\\nWhen empty, port (if specified) of the request is used.\",\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"statusCode\": {\n \"default\": 302,\n \"description\": \"StatusCode is the HTTP status code to be used in response.\",\n \"enum\": [\n 301,\n 302,\n 303,\n 307,\n 308\n ],\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"responseHeaderModifier\": {\n \"description\": \"Only one action is supported per header name.\\nConfiguration to set or add multiple values for a header must use RFC 7230\\nheader value formatting, separating each value with a comma.\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"remove\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"maxItems\": 16,\n \"type\": \"array\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"RequestHeaderModifier\",\n \"ResponseHeaderModifier\",\n \"RequestRedirect\",\n \"URLRewrite\",\n \"RequestMirror\"\n ],\n \"type\": \"string\"\n },\n \"urlRewrite\": {\n \"properties\": {\n \"hostToBackendHostname\": {\n \"description\": \"HostToBackendHostname rewrites the hostname to the hostname of the\\nupstream host. This option is only available when targeting MeshGateways.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Hostname is the value to be used to replace the host header value during forwarding.\",\n \"maxLength\": 253,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path defines a path rewrite.\",\n \"properties\": {\n \"replaceFullPath\": {\n \"type\": \"string\"\n },\n \"replacePrefixMatch\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"ReplaceFullPath\",\n \"ReplacePrefixMatch\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"matches\": {\n \"description\": \"Matches describes how to match HTTP requests this rule should be applied\\nto.\",\n \"items\": {\n \"properties\": {\n \"headers\": {\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"method\": {\n \"enum\": [\n \"CONNECT\",\n \"DELETE\",\n \"GET\",\n \"HEAD\",\n \"OPTIONS\",\n \"PATCH\",\n \"POST\",\n \"PUT\",\n \"TRACE\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"properties\": {\n \"type\": {\n \"enum\": [\n \"Exact\",\n \"PathPrefix\",\n \"RegularExpression\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Exact or prefix matches must be an absolute path. A prefix matches only\\nif separated by a slash or the entire path.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"queryParams\": {\n \"description\": \"QueryParams matches based on HTTP URL query parameters. Multiple matches\\nare ANDed together such that all listed matches must succeed.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"type\": {\n \"enum\": [\n \"Exact\",\n \"RegularExpression\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"default\",\n \"matches\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nrequest destinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh HTTP Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh HTTP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHealthCheck.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHealthCheck.json new file mode 100644 index 00000000000..225f86f6e72 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshHealthCheck.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshHealthCheck", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshHealthCheck resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"alwaysLogHealthCheckFailures\": {\n \"description\": \"If set to true, health check failure events will always be logged. If set\\nto false, only the initial health check failure event will be logged. The\\ndefault value is false.\",\n \"type\": \"boolean\"\n },\n \"eventLogPath\": {\n \"description\": \"Specifies the path to the file where Envoy can log health check events.\\nIf empty, no event log will be written.\",\n \"type\": \"string\"\n },\n \"failTrafficOnPanic\": {\n \"description\": \"If set to true, Envoy will not consider any hosts when the cluster is in\\n'panic mode'. Instead, the cluster will fail all requests as if all hosts\\nare unhealthy. This can help avoid potentially overwhelming a failing\\nservice.\",\n \"type\": \"boolean\"\n },\n \"grpc\": {\n \"description\": \"GrpcHealthCheck defines gRPC configuration which will instruct the service\\nthe health check will be made for is a gRPC service.\",\n \"properties\": {\n \"authority\": {\n \"description\": \"The value of the :authority header in the gRPC health check request,\\nby default name of the cluster this health check is associated with\",\n \"type\": \"string\"\n },\n \"disabled\": {\n \"description\": \"If true the GrpcHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"serviceName\": {\n \"description\": \"Service name parameter which will be sent to gRPC service\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"healthyPanicThreshold\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Allows to configure panic threshold for Envoy cluster. If not specified,\\nthe default is 50%. To disable panic mode, set to 0%.\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"healthyThreshold\": {\n \"default\": 1,\n \"description\": \"Number of consecutive healthy checks before considering a host healthy.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"http\": {\n \"description\": \"HttpHealthCheck defines HTTP configuration which will instruct the service\\nthe health check will be made for is an HTTP service.\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"If true the HttpHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"expectedStatuses\": {\n \"description\": \"List of HTTP response statuses which are considered healthy\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"default\": \"/\",\n \"description\": \"The HTTP path which will be requested during the health check\\n(ie. /health)\",\n \"type\": \"string\"\n },\n \"requestHeadersToAdd\": {\n \"description\": \"The list of HTTP headers which should be added to each health check\\nrequest\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"initialJitter\": {\n \"description\": \"If specified, Envoy will start health checking after a random time in\\nms between 0 and initialJitter. This only applies to the first health\\ncheck.\",\n \"type\": \"string\"\n },\n \"interval\": {\n \"default\": \"1m\",\n \"description\": \"Interval between consecutive health checks.\",\n \"type\": \"string\"\n },\n \"intervalJitter\": {\n \"description\": \"If specified, during every interval Envoy will add IntervalJitter to the\\nwait time.\",\n \"type\": \"string\"\n },\n \"intervalJitterPercent\": {\n \"description\": \"If specified, during every interval Envoy will add IntervalJitter *\\nIntervalJitterPercent / 100 to the wait time. If IntervalJitter and\\nIntervalJitterPercent are both set, both of them will be used to\\nincrease the wait time.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"noTrafficInterval\": {\n \"description\": \"The \\\"no traffic interval\\\" is a special health check interval that is used\\nwhen a cluster has never had traffic routed to it. This lower interval\\nallows cluster information to be kept up to date, without sending a\\npotentially large amount of active health checking traffic for no reason.\\nOnce a cluster has been used for traffic routing, Envoy will shift back\\nto using the standard health check interval that is defined. Note that\\nthis interval takes precedence over any other. The default value for \\\"no\\ntraffic interval\\\" is 60 seconds.\",\n \"type\": \"string\"\n },\n \"reuseConnection\": {\n \"description\": \"Reuse health check connection between health checks. Default is true.\",\n \"type\": \"boolean\"\n },\n \"tcp\": {\n \"description\": \"TcpHealthCheck defines configuration for specifying bytes to send and\\nexpected response during the health check\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"If true the TcpHealthCheck is disabled\",\n \"type\": \"boolean\"\n },\n \"receive\": {\n \"description\": \"List of Base64 encoded blocks of strings expected as a response. When checking the response,\\n\\\"fuzzy\\\" matching is performed such that each block must be found, and\\nin the order specified, but not necessarily contiguous.\\nIf not provided or empty, checks will be performed as \\\"connect only\\\" and be marked as successful when TCP connection is successfully established.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"send\": {\n \"description\": \"Base64 encoded content of the message which will be sent during the health check to the target\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timeout\": {\n \"default\": \"15s\",\n \"description\": \"Maximum time to wait for a health check response.\",\n \"type\": \"string\"\n },\n \"unhealthyThreshold\": {\n \"default\": 5,\n \"description\": \"Number of consecutive unhealthy checks before considering a host\\nunhealthy.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Health Check\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Health Check", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshInsight.json new file mode 100644 index 00000000000..cda24f89bbf --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Mesh Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json new file mode 100644 index 00000000000..9390d0985e4 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshLoadBalancingStrategy.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshLoadBalancingStrategy", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshLoadBalancingStrategy resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"loadBalancer\": {\n \"description\": \"LoadBalancer allows to specify load balancing algorithm.\",\n \"properties\": {\n \"leastRequest\": {\n \"description\": \"LeastRequest selects N random available hosts as specified in 'choiceCount' (2 by default)\\nand picks the host which has the fewest active requests\",\n \"properties\": {\n \"activeRequestBias\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"ActiveRequestBias refers to dynamic weights applied when hosts have varying load\\nbalancing weights. A higher value here aggressively reduces the weight of endpoints\\nthat are currently handling active requests. In essence, the higher the ActiveRequestBias\\nvalue, the more forcefully it reduces the load balancing weight of endpoints that are\\nactively serving requests.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"choiceCount\": {\n \"description\": \"ChoiceCount is the number of random healthy hosts from which the host with\\nthe fewest active requests will be chosen. Defaults to 2 so that Envoy performs\\ntwo-choice selection if the field is not set.\",\n \"format\": \"int32\",\n \"minimum\": 2,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"maglev\": {\n \"description\": \"Maglev implements consistent hashing to upstream hosts. Maglev can be used as\\na drop in replacement for the ring hash load balancer any place in which\\nconsistent hashing is desired.\",\n \"properties\": {\n \"hashPolicies\": {\n \"description\": \"HashPolicies specify a list of request/connection properties that are used to calculate a hash.\\nThese hash policies are executed in the specified order. If a hash policy has the “terminal” attribute\\nset to true, and there is already a hash generated, the hash is returned immediately,\\nignoring the rest of the hash policy list.\",\n \"items\": {\n \"properties\": {\n \"connection\": {\n \"properties\": {\n \"sourceIP\": {\n \"description\": \"Hash on source IP address.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the cookie that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"The name of the path for the cookie.\",\n \"type\": \"string\"\n },\n \"ttl\": {\n \"description\": \"If specified, a cookie with the TTL will be generated if the cookie is not present.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"filterState\": {\n \"properties\": {\n \"key\": {\n \"description\": \"The name of the Object in the per-request filterState, which is\\nan Envoy::Hashable object. If there is no data associated with the key,\\nor the stored object is not Envoy::Hashable, no hash will be produced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"header\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the request header that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"queryParameter\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the URL query parameter that will be used to obtain the hash key.\\nIf the parameter is not present, no hash will be produced. Query parameter names\\nare case-sensitive.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"terminal\": {\n \"description\": \"Terminal is a flag that short-circuits the hash computing. This field provides\\na ‘fallback’ style of configuration: “if a terminal policy doesn’t work, fallback\\nto rest of the policy list”, it saves time when the terminal policy works.\\nIf true, and there is already a hash computed, ignore rest of the list of hash polices.\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"enum\": [\n \"Header\",\n \"Cookie\",\n \"SourceIP\",\n \"QueryParameter\",\n \"FilterState\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tableSize\": {\n \"description\": \"The table size for Maglev hashing. Maglev aims for “minimal disruption”\\nrather than an absolute guarantee. Minimal disruption means that when\\nthe set of upstream hosts change, a connection will likely be sent\\nto the same upstream as it was before. Increasing the table size reduces\\nthe amount of disruption. The table size must be prime number limited to 5000011.\\nIf it is not specified, the default is 65537.\",\n \"format\": \"int32\",\n \"maximum\": 5000011,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"random\": {\n \"description\": \"Random selects a random available host. The random load balancer generally\\nperforms better than round-robin if no health checking policy is configured.\\nRandom selection avoids bias towards the host in the set that comes after a failed host.\",\n \"type\": \"object\"\n },\n \"ringHash\": {\n \"description\": \"RingHash implements consistent hashing to upstream hosts. Each host is mapped\\nonto a circle (the “ring”) by hashing its address; each request is then routed\\nto a host by hashing some property of the request, and finding the nearest\\ncorresponding host clockwise around the ring.\",\n \"properties\": {\n \"hashFunction\": {\n \"description\": \"HashFunction is a function used to hash hosts onto the ketama ring.\\nThe value defaults to XX_HASH. Available values – XX_HASH, MURMUR_HASH_2.\",\n \"enum\": [\n \"XXHash\",\n \"MurmurHash2\"\n ],\n \"type\": \"string\"\n },\n \"hashPolicies\": {\n \"description\": \"HashPolicies specify a list of request/connection properties that are used to calculate a hash.\\nThese hash policies are executed in the specified order. If a hash policy has the “terminal” attribute\\nset to true, and there is already a hash generated, the hash is returned immediately,\\nignoring the rest of the hash policy list.\",\n \"items\": {\n \"properties\": {\n \"connection\": {\n \"properties\": {\n \"sourceIP\": {\n \"description\": \"Hash on source IP address.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"cookie\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the cookie that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"The name of the path for the cookie.\",\n \"type\": \"string\"\n },\n \"ttl\": {\n \"description\": \"If specified, a cookie with the TTL will be generated if the cookie is not present.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"filterState\": {\n \"properties\": {\n \"key\": {\n \"description\": \"The name of the Object in the per-request filterState, which is\\nan Envoy::Hashable object. If there is no data associated with the key,\\nor the stored object is not Envoy::Hashable, no hash will be produced.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"header\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the request header that will be used to obtain the hash key.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"queryParameter\": {\n \"properties\": {\n \"name\": {\n \"description\": \"The name of the URL query parameter that will be used to obtain the hash key.\\nIf the parameter is not present, no hash will be produced. Query parameter names\\nare case-sensitive.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"terminal\": {\n \"description\": \"Terminal is a flag that short-circuits the hash computing. This field provides\\na ‘fallback’ style of configuration: “if a terminal policy doesn’t work, fallback\\nto rest of the policy list”, it saves time when the terminal policy works.\\nIf true, and there is already a hash computed, ignore rest of the list of hash polices.\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"enum\": [\n \"Header\",\n \"Cookie\",\n \"SourceIP\",\n \"QueryParameter\",\n \"FilterState\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"maxRingSize\": {\n \"description\": \"Maximum hash ring size. Defaults to 8M entries, and limited to 8M entries,\\nbut can be lowered to further constrain resource use.\",\n \"format\": \"int32\",\n \"maximum\": 8000000,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"minRingSize\": {\n \"description\": \"Minimum hash ring size. The larger the ring is (that is,\\nthe more hashes there are for each provided host) the better the request distribution\\nwill reflect the desired weights. Defaults to 1024 entries, and limited to 8M entries.\",\n \"format\": \"int32\",\n \"maximum\": 8000000,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"roundRobin\": {\n \"description\": \"RoundRobin is a load balancing algorithm that distributes requests\\nacross available upstream hosts in round-robin order.\",\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"RoundRobin\",\n \"LeastRequest\",\n \"RingHash\",\n \"Random\",\n \"Maglev\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"localityAwareness\": {\n \"description\": \"LocalityAwareness contains configuration for locality aware load balancing.\",\n \"properties\": {\n \"crossZone\": {\n \"description\": \"CrossZone defines locality aware load balancing priorities when dataplane proxies inside local zone\\nare unavailable\",\n \"properties\": {\n \"failover\": {\n \"description\": \"Failover defines list of load balancing rules in order of priority\",\n \"items\": {\n \"properties\": {\n \"from\": {\n \"description\": \"From defines the list of zones to which the rule applies\",\n \"properties\": {\n \"zones\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"zones\"\n ],\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To defines to which zones the traffic should be load balanced\",\n \"properties\": {\n \"type\": {\n \"description\": \"Type defines how target zones will be picked from available zones\",\n \"enum\": [\n \"None\",\n \"Only\",\n \"Any\",\n \"AnyExcept\"\n ],\n \"type\": \"string\"\n },\n \"zones\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"to\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"failoverThreshold\": {\n \"description\": \"FailoverThreshold defines the percentage of live destination dataplane proxies below which load balancing to the\\nnext priority starts.\\nExample: If you configure failoverThreshold to 70, and you have deployed 10 destination dataplane proxies.\\nLoad balancing to next priority will start when number of live destination dataplane proxies drops below 7.\\nDefault 50\",\n \"properties\": {\n \"percentage\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"percentage\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Disabled allows to disable locality-aware load balancing.\\nWhen disabled requests are distributed across all endpoints regardless of locality.\",\n \"type\": \"boolean\"\n },\n \"localZone\": {\n \"description\": \"LocalZone defines locality aware load balancing priorities between dataplane proxies inside a zone\",\n \"properties\": {\n \"affinityTags\": {\n \"description\": \"AffinityTags list of tags for local zone load balancing.\",\n \"items\": {\n \"properties\": {\n \"key\": {\n \"description\": \"Key defines tag for which affinity is configured\",\n \"type\": \"string\"\n },\n \"weight\": {\n \"description\": \"Weight of the tag used for load balancing. The bigger the weight the bigger the priority.\\nPercentage of local traffic load balanced to tag is computed by dividing weight by sum of weights from all tags.\\nFor example with two affinity tags first with weight 80 and second with weight 20,\\nthen 80% of traffic will be redirected to the first tag, and 20% of traffic will be redirected to second one.\\nSetting weights is not mandatory. When weights are not set control plane will compute default weight based on list order.\\nDefault: If you do not specify weight we will adjust them so that 90% traffic goes to first tag, 9% to next, and 1% to third and so on.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Load Balancing Strategy\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Load Balancing Strategy", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshMetric.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshMetric.json new file mode 100644 index 00000000000..11347733ed8 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshMetric.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshMetric", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshMetric resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshMetric configuration.\",\n \"properties\": {\n \"applications\": {\n \"description\": \"Applications is a list of application that Dataplane Proxy will scrape\",\n \"items\": {\n \"properties\": {\n \"address\": {\n \"description\": \"Address on which an application listens.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the application to scrape\",\n \"type\": \"string\"\n },\n \"path\": {\n \"default\": \"/metrics/prometheus\",\n \"description\": \"Path on which an application expose HTTP endpoint with metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port on which an application expose HTTP endpoint with metrics.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"backends\": {\n \"description\": \"Backends list that will be used to collect metrics.\",\n \"items\": {\n \"properties\": {\n \"openTelemetry\": {\n \"description\": \"OpenTelemetry backend configuration\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Endpoint for OpenTelemetry collector\",\n \"type\": \"string\"\n },\n \"refreshInterval\": {\n \"description\": \"RefreshInterval defines how frequent metrics should be pushed to collector\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"prometheus\": {\n \"description\": \"Prometheus backend configuration.\",\n \"properties\": {\n \"clientId\": {\n \"description\": \"ClientId of the Prometheus backend. Needed when using MADS for DP discovery.\",\n \"type\": \"string\"\n },\n \"path\": {\n \"default\": \"/metrics\",\n \"description\": \"Path on which a dataplane should expose HTTP endpoint with Prometheus metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"default\": 5670,\n \"description\": \"Port on which a dataplane should expose HTTP endpoint with Prometheus metrics.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tls\": {\n \"description\": \"Configuration of TLS for prometheus listener.\",\n \"properties\": {\n \"mode\": {\n \"default\": \"Disabled\",\n \"description\": \"Configuration of TLS for Prometheus listener.\",\n \"enum\": [\n \"Disabled\",\n \"ProvidedTLS\",\n \"ActiveMTLSBackend\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mode\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\",\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type of the backend that will be used to collect metrics. At the moment only Prometheus backend is available.\",\n \"enum\": [\n \"Prometheus\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sidecar\": {\n \"description\": \"Sidecar metrics collection configuration\",\n \"properties\": {\n \"includeUnused\": {\n \"default\": false,\n \"description\": \"IncludeUnused if false will scrape only metrics that has been by sidecar (counters incremented\\nat least once, gauges changed at least once, and histograms added to at\\nleast once). If true will scrape all metrics (even the ones with zeros).\",\n \"type\": \"boolean\"\n },\n \"profiles\": {\n \"description\": \"Profiles allows to customize which metrics are published.\",\n \"properties\": {\n \"appendProfiles\": {\n \"description\": \"AppendProfiles allows to combine the metrics from multiple predefined profiles.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the predefined profile, one of: all, basic, none\",\n \"enum\": [\n \"All\",\n \"Basic\",\n \"None\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"exclude\": {\n \"description\": \"Exclude makes it possible to exclude groups of metrics from a resulting profile.\\nExclude is subordinate to Include.\",\n \"items\": {\n \"properties\": {\n \"match\": {\n \"description\": \"Match is the value used to match using particular Type\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type defined the type of selector, one of: prefix, regex, exact\",\n \"enum\": [\n \"Prefix\",\n \"Regex\",\n \"Exact\",\n \"Contains\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"include\": {\n \"description\": \"Include makes it possible to include additional metrics in a selected profiles.\\nInclude takes precedence over Exclude.\",\n \"items\": {\n \"properties\": {\n \"match\": {\n \"description\": \"Match is the value used to match using particular Type\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type defined the type of selector, one of: prefix, regex, exact\",\n \"enum\": [\n \"Prefix\",\n \"Regex\",\n \"Exact\",\n \"Contains\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Metric\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Metric", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshPassthrough.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshPassthrough.json new file mode 100644 index 00000000000..efeed820ce4 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshPassthrough.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshPassthrough", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshPassthrough resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshPassthrough configuration.\",\n \"properties\": {\n \"appendMatch\": {\n \"description\": \"AppendMatch is a list of destinations that should be allowed through the sidecar.\",\n \"items\": {\n \"properties\": {\n \"port\": {\n \"description\": \"Port defines the port to which a user makes a request.\",\n \"type\": \"integer\"\n },\n \"protocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol defines the communication protocol. Possible values: `tcp`, `tls`, `grpc`, `http`, `http2`.\",\n \"enum\": [\n \"tcp\",\n \"tls\",\n \"grpc\",\n \"http\",\n \"http2\"\n ],\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of the match, one of `Domain`, `IP` or `CIDR` is available.\",\n \"enum\": [\n \"Domain\",\n \"IP\",\n \"CIDR\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value for the specified Type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"passthroughMode\": {\n \"default\": \"None\",\n \"description\": \"Defines the passthrough behavior. Possible values: `All`, `None`, `Matched`\\nWhen `All` or `None` `appendMatch` has no effect.\",\n \"enum\": [\n \"All\",\n \"Matched\",\n \"None\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Passthrough\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Passthrough", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshProxyPatch.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshProxyPatch.json new file mode 100644 index 00000000000..87c4bcd7594 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshProxyPatch.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshProxyPatch", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshProxyPatch resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations\\nreferenced in 'targetRef'.\",\n \"properties\": {\n \"appendModifications\": {\n \"description\": \"AppendModifications is a list of modifications applied on the selected proxy.\",\n \"items\": {\n \"properties\": {\n \"cluster\": {\n \"description\": \"Cluster is a modification of Envoy's Cluster resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's Cluster\\nresource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the cluster to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched cluster.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"httpFilter\": {\n \"description\": \"HTTPFilter is a modification of Envoy HTTP Filter\\navailable in HTTP Connection Manager in a Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's\\nHTTP Filter available in HTTP Connection Manager in a Listener resource.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"listenerName\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"listenerTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Listener tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the HTTP filter. For example \\\"envoy.filters.http.local_ratelimit\\\"\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Remove\",\n \"Patch\",\n \"AddFirst\",\n \"AddBefore\",\n \"AddAfter\",\n \"AddLast\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"listener\": {\n \"description\": \"Listener is a modification of Envoy's Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's Listener\\nresource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"networkFilter\": {\n \"description\": \"NetworkFilter is a modification of Envoy Listener's filter.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy Listener's\\nfilter.\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"listenerName\": {\n \"description\": \"Name of the listener to match.\",\n \"type\": \"string\"\n },\n \"listenerTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Listener tags available in Listener#Metadata#FilterMetadata[io.kuma.tags]\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the network filter. For example \\\"envoy.filters.network.ratelimit\\\"\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Remove\",\n \"Patch\",\n \"AddFirst\",\n \"AddBefore\",\n \"AddAfter\",\n \"AddLast\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"operation\"\n ],\n \"type\": \"object\"\n },\n \"virtualHost\": {\n \"description\": \"VirtualHost is a modification of Envoy's VirtualHost\\nreferenced in HTTP Connection Manager in a Listener resource.\",\n \"properties\": {\n \"jsonPatches\": {\n \"description\": \"JsonPatches specifies list of jsonpatches to apply to on Envoy's\\nVirtualHost resource\",\n \"items\": {\n \"description\": \"JsonPatchBlock is one json patch operation block.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From is a jsonpatch from string, used by move and copy operations.\",\n \"type\": \"string\"\n },\n \"op\": {\n \"description\": \"Op is a jsonpatch operation string.\",\n \"enum\": [\n \"add\",\n \"remove\",\n \"replace\",\n \"move\",\n \"copy\"\n ],\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"Path is a jsonpatch path string.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value must be a valid json value used by replace and add operations.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"op\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"match\": {\n \"description\": \"Match is a set of conditions that have to be matched for modification operation to happen.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the VirtualHost to match.\",\n \"type\": \"string\"\n },\n \"origin\": {\n \"description\": \"Origin is the name of the component or plugin that generated the resource.\\n\\n\\nHere is the list of well-known origins:\\ninbound - resources generated for handling incoming traffic.\\noutbound - resources generated for handling outgoing traffic.\\ntransparent - resources generated for transparent proxy functionality.\\nprometheus - resources generated when Prometheus metrics are enabled.\\ndirect-access - resources generated for Direct Access functionality.\\ningress - resources generated for Zone Ingress.\\negress - resources generated for Zone Egress.\\ngateway - resources generated for MeshGateway.\\n\\n\\nThe list is not complete, because policy plugins can introduce new resources.\\nFor example MeshTrace plugin can create Cluster with \\\"mesh-trace\\\" origin.\",\n \"type\": \"string\"\n },\n \"routeConfigurationName\": {\n \"description\": \"Name of the RouteConfiguration resource to match.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"operation\": {\n \"description\": \"Operation to execute on matched listener.\",\n \"enum\": [\n \"Add\",\n \"Remove\",\n \"Patch\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of xDS resource in YAML format to add or patch.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"match\",\n \"operation\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"appendModifications\"\n ],\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"default\",\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Proxy Patch\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Proxy Patch", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRateLimit.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRateLimit.json new file mode 100644 index 00000000000..e400bf451db --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRateLimit.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshRateLimit", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshRateLimit resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"local\": {\n \"description\": \"LocalConf defines local http or/and tcp rate limit configuration\",\n \"properties\": {\n \"http\": {\n \"description\": \"LocalHTTP defines configuration of local HTTP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/local_rate_limit_filter\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"LocalTCP defines confguration of local TCP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/local_rate_limit_filter\",\n \"properties\": {\n \"connectionRate\": {\n \"description\": \"Defines how many connections are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\\nDefault: false\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"local\": {\n \"description\": \"LocalConf defines local http or/and tcp rate limit configuration\",\n \"properties\": {\n \"http\": {\n \"description\": \"LocalHTTP defines configuration of local HTTP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/local_rate_limit_filter\",\n \"properties\": {\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\",\n \"type\": \"boolean\"\n },\n \"onRateLimit\": {\n \"description\": \"Describes the actions to take on a rate limit event\",\n \"properties\": {\n \"headers\": {\n \"description\": \"The Headers to be added to the HTTP response on a rate limit event\",\n \"properties\": {\n \"add\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"set\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 16,\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"The HTTP status code to be set on a rate limit event\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"requestRate\": {\n \"description\": \"Defines how many requests are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"LocalTCP defines confguration of local TCP rate limiting\\nhttps://www.envoyproxy.io/docs/envoy/latest/configuration/listeners/network_filters/local_rate_limit_filter\",\n \"properties\": {\n \"connectionRate\": {\n \"description\": \"Defines how many connections are allowed per interval.\",\n \"properties\": {\n \"interval\": {\n \"description\": \"The interval the number of units is accounted for.\",\n \"type\": \"string\"\n },\n \"num\": {\n \"description\": \"Number of units per interval (depending on usage it can be a number of requests,\\nor a number of connections).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"interval\",\n \"num\"\n ],\n \"type\": \"object\"\n },\n \"disabled\": {\n \"description\": \"Define if rate limiting should be disabled.\\nDefault: false\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Rate Limit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Rate Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRetry.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRetry.json new file mode 100644 index 00000000000..69659ae7be4 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshRetry.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshRetry", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshRetry resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"grpc\": {\n \"description\": \"GRPC defines a configuration of retries for GRPC traffic\",\n \"properties\": {\n \"backOff\": {\n \"description\": \"BackOff is a configuration of durations which will be used in an exponential\\nbackoff strategy between retries.\",\n \"properties\": {\n \"baseInterval\": {\n \"default\": \"25ms\",\n \"description\": \"BaseInterval is an amount of time which should be taken between retries.\\nMust be greater than zero. Values less than 1 ms are rounded up to 1 ms.\",\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\\nDefault is 10 times the \\\"BaseInterval\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"numRetries\": {\n \"description\": \"NumRetries is the number of attempts that will be made on failed (and\\nretriable) requests. If not set, the default value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"description\": \"PerTryTimeout is the maximum amount of time each retry attempt can take\\nbefore it times out. If not set, the global request timeout for the route\\nwill be used. Setting this value to 0 will disable the per-try timeout.\",\n \"type\": \"string\"\n },\n \"rateLimitedBackOff\": {\n \"description\": \"RateLimitedBackOff is a configuration of backoff which will be used when\\nthe upstream returns one of the headers configured.\",\n \"properties\": {\n \"maxInterval\": {\n \"default\": \"300s\",\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\",\n \"type\": \"string\"\n },\n \"resetHeaders\": {\n \"description\": \"ResetHeaders specifies the list of headers (like Retry-After or X-RateLimit-Reset)\\nto match against the response. Headers are tried in order, and matched\\ncase-insensitive. The first header to be parsed successfully is used.\\nIf no headers match the default exponential BackOff is used instead.\",\n \"items\": {\n \"properties\": {\n \"format\": {\n \"description\": \"The format of the reset header.\",\n \"enum\": [\n \"Seconds\",\n \"UnixTimestamp\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The Name of the reset header.\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"format\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"retryOn\": {\n \"description\": \"RetryOn is a list of conditions which will cause a retry.\",\n \"example\": [\n \"Canceled\",\n \"DeadlineExceeded\",\n \"Internal\",\n \"ResourceExhausted\",\n \"Unavailable\"\n ],\n \"items\": {\n \"enum\": [\n \"Canceled\",\n \"DeadlineExceeded\",\n \"Internal\",\n \"ResourceExhausted\",\n \"Unavailable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"http\": {\n \"description\": \"HTTP defines a configuration of retries for HTTP traffic\",\n \"properties\": {\n \"backOff\": {\n \"description\": \"BackOff is a configuration of durations which will be used in exponential\\nbackoff strategy between retries.\",\n \"properties\": {\n \"baseInterval\": {\n \"default\": \"25ms\",\n \"description\": \"BaseInterval is an amount of time which should be taken between retries.\\nMust be greater than zero. Values less than 1 ms are rounded up to 1 ms.\",\n \"type\": \"string\"\n },\n \"maxInterval\": {\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\\nDefault is 10 times the \\\"BaseInterval\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"hostSelection\": {\n \"description\": \"HostSelection is a list of predicates that dictate how hosts should be selected\\nwhen requests are retried.\",\n \"items\": {\n \"properties\": {\n \"predicate\": {\n \"description\": \"Type is requested predicate mode.\",\n \"enum\": [\n \"OmitPreviousHosts\",\n \"OmitHostsWithTags\",\n \"OmitPreviousPriorities\"\n ],\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags is a map of metadata to match against for selecting the omitted hosts. Required if Type is\\nOmitHostsWithTags\",\n \"type\": \"object\"\n },\n \"updateFrequency\": {\n \"default\": 2,\n \"description\": \"UpdateFrequency is how often the priority load should be updated based on previously attempted priorities.\\nUsed for OmitPreviousPriorities.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"predicate\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostSelectionMaxAttempts\": {\n \"description\": \"HostSelectionMaxAttempts is the maximum number of times host selection will be\\nreattempted before giving up, at which point the host that was last selected will\\nbe routed to. If unspecified, this will default to retrying once.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"numRetries\": {\n \"description\": \"NumRetries is the number of attempts that will be made on failed (and\\nretriable) requests. If not set, the default value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"perTryTimeout\": {\n \"description\": \"PerTryTimeout is the amount of time after which retry attempt should time out.\\nIf left unspecified, the global route timeout for the request will be used.\\nConsequently, when using a 5xx based retry policy, a request that times out\\nwill not be retried as the total timeout budget would have been exhausted.\\nSetting this timeout to 0 will disable it.\",\n \"type\": \"string\"\n },\n \"rateLimitedBackOff\": {\n \"description\": \"RateLimitedBackOff is a configuration of backoff which will be used\\nwhen the upstream returns one of the headers configured.\",\n \"properties\": {\n \"maxInterval\": {\n \"default\": \"300s\",\n \"description\": \"MaxInterval is a maximal amount of time which will be taken between retries.\",\n \"type\": \"string\"\n },\n \"resetHeaders\": {\n \"description\": \"ResetHeaders specifies the list of headers (like Retry-After or X-RateLimit-Reset)\\nto match against the response. Headers are tried in order, and matched\\ncase-insensitive. The first header to be parsed successfully is used.\\nIf no headers match the default exponential BackOff is used instead.\",\n \"items\": {\n \"properties\": {\n \"format\": {\n \"description\": \"The format of the reset header.\",\n \"enum\": [\n \"Seconds\",\n \"UnixTimestamp\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"The Name of the reset header.\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"format\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"retriableRequestHeaders\": {\n \"description\": \"RetriableRequestHeaders is an HTTP headers which must be present in the request\\nfor retries to be attempted.\",\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retriableResponseHeaders\": {\n \"description\": \"RetriableResponseHeaders is an HTTP response headers that trigger a retry\\nif present in the response. A retry will be triggered if any of the header\\nmatches the upstream response headers.\",\n \"items\": {\n \"description\": \"HeaderMatch describes how to select an HTTP route by matching HTTP request\\nheaders.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the HTTP Header to be matched. Name MUST be lower case\\nas they will be handled with case insensitivity (See https://tools.ietf.org/html/rfc7230#section-3.2).\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"pattern\": \"^[a-z0-9!#$%\\u0026'*+\\\\-.^_\\\\x60|~]+$\",\n \"type\": \"string\"\n },\n \"type\": {\n \"default\": \"Exact\",\n \"description\": \"Type specifies how to match against the value of the header.\",\n \"enum\": [\n \"Exact\",\n \"Present\",\n \"RegularExpression\",\n \"Absent\",\n \"Prefix\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value is the value of HTTP Header to be matched.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"retryOn\": {\n \"description\": \"RetryOn is a list of conditions which will cause a retry. Available values are:\\n[5XX, GatewayError, Reset, Retriable4xx, ConnectFailure, EnvoyRatelimited,\\nRefusedStream, Http3PostConnectFailure, HttpMethodConnect, HttpMethodDelete,\\nHttpMethodGet, HttpMethodHead, HttpMethodOptions, HttpMethodPatch,\\nHttpMethodPost, HttpMethodPut, HttpMethodTrace].\\nAlso, any HTTP status code (500, 503, etc.).\",\n \"example\": [\n \"5XX\",\n \"GatewayError\",\n \"Reset\",\n \"Retriable4xx\",\n \"ConnectFailure\",\n \"EnvoyRatelimited\",\n \"RefusedStream\",\n \"Http3PostConnectFailure\",\n \"HttpMethodConnect\",\n \"HttpMethodDelete\",\n \"HttpMethodGet\",\n \"HttpMethodHead\",\n \"HttpMethodOptions\",\n \"HttpMethodPatch\",\n \"HttpMethodPost\",\n \"HttpMethodPut\",\n \"HttpMethodTrace\",\n \"500\",\n \"503\"\n ],\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"tcp\": {\n \"description\": \"TCP defines a configuration of retries for TCP traffic\",\n \"properties\": {\n \"maxConnectAttempt\": {\n \"description\": \"MaxConnectAttempt is a maximal amount of TCP connection attempts\\nwhich will be made before giving up\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Retry\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Retry", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshService.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshService.json new file mode 100644 index 00000000000..46c63118720 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshService.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshService", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshService resource.\",\n \"properties\": {\n \"identities\": {\n \"items\": {\n \"properties\": {\n \"type\": {\n \"enum\": [\n \"ServiceTag\"\n ],\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"appProtocol\": {\n \"default\": \"tcp\",\n \"description\": \"Protocol identifies a protocol supported by a service.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"port\",\n \"appProtocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"selector\": {\n \"properties\": {\n \"dataplaneRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"dataplaneTags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Service\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Service", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTCPRoute.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTCPRoute.json new file mode 100644 index 00000000000..0c4eb204709 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTCPRoute.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTCPRoute", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTCPRoute resource.\",\n \"properties\": {\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined in-place.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding\\nconfigurations\",\n \"items\": {\n \"properties\": {\n \"rules\": {\n \"description\": \"Rules contains the routing rules applies to a combination of top-level\\ntargetRef and the targetRef in this entry.\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default holds routing rules that can be merged with rules from other\\npolicies.\",\n \"properties\": {\n \"backendRefs\": {\n \"items\": {\n \"description\": \"BackendRef defines where to forward traffic.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port is only supported when this ref refers to a real MeshService object\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n },\n \"weight\": {\n \"default\": 1,\n \"minimum\": 0,\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"backendRefs\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"default\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 1,\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh TCP Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh TCP Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTimeout.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTimeout.json new file mode 100644 index 00000000000..0f682a98309 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTimeout.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTimeout", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTimeout resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"connectionTimeout\": {\n \"description\": \"ConnectionTimeout specifies the amount of time proxy will wait for an TCP connection to be established.\\nDefault value is 5 seconds. Cannot be set to 0.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"Http provides configuration for HTTP specific timeouts\",\n \"properties\": {\n \"maxConnectionDuration\": {\n \"description\": \"MaxConnectionDuration is the time after which a connection will be drained and/or closed,\\nstarting from when it was first established. Setting this timeout to 0 will disable it.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"description\": \"MaxStreamDuration is the maximum time that a stream’s lifetime will span.\\nSetting this timeout to 0 will disable it. Disabled by default.\",\n \"type\": \"string\"\n },\n \"requestHeadersTimeout\": {\n \"description\": \"RequestHeadersTimeout The amount of time that proxy will wait for the request headers to be received. The timer is\\nactivated when the first byte of the headers is received, and is disarmed when the last byte of\\nthe headers has been received. If not specified or set to 0, this timeout is disabled.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout The amount of time that proxy will wait for the entire request to be received.\\nThe timer is activated when the request is initiated, and is disarmed when the last byte of the request is sent,\\nOR when the response is initiated. Setting this timeout to 0 will disable it.\\nDefault is 15s.\",\n \"type\": \"string\"\n },\n \"streamIdleTimeout\": {\n \"description\": \"StreamIdleTimeout is the amount of time that proxy will allow a stream to exist with no activity.\\nSetting this timeout to 0 will disable it. Default is 30m\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"description\": \"IdleTimeout is defined as the period in which there are no bytes sent or received on connection\\nSetting this timeout to 0 will disable it. Be cautious when disabling it because\\nit can lead to connection leaking. Default value is 1h.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"To list makes a match between the consumed services and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of destinations referenced in\\n'targetRef'\",\n \"properties\": {\n \"connectionTimeout\": {\n \"description\": \"ConnectionTimeout specifies the amount of time proxy will wait for an TCP connection to be established.\\nDefault value is 5 seconds. Cannot be set to 0.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"Http provides configuration for HTTP specific timeouts\",\n \"properties\": {\n \"maxConnectionDuration\": {\n \"description\": \"MaxConnectionDuration is the time after which a connection will be drained and/or closed,\\nstarting from when it was first established. Setting this timeout to 0 will disable it.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"maxStreamDuration\": {\n \"description\": \"MaxStreamDuration is the maximum time that a stream’s lifetime will span.\\nSetting this timeout to 0 will disable it. Disabled by default.\",\n \"type\": \"string\"\n },\n \"requestHeadersTimeout\": {\n \"description\": \"RequestHeadersTimeout The amount of time that proxy will wait for the request headers to be received. The timer is\\nactivated when the first byte of the headers is received, and is disarmed when the last byte of\\nthe headers has been received. If not specified or set to 0, this timeout is disabled.\\nDisabled by default.\",\n \"type\": \"string\"\n },\n \"requestTimeout\": {\n \"description\": \"RequestTimeout The amount of time that proxy will wait for the entire request to be received.\\nThe timer is activated when the request is initiated, and is disarmed when the last byte of the request is sent,\\nOR when the response is initiated. Setting this timeout to 0 will disable it.\\nDefault is 15s.\",\n \"type\": \"string\"\n },\n \"streamIdleTimeout\": {\n \"description\": \"StreamIdleTimeout is the amount of time that proxy will allow a stream to exist with no activity.\\nSetting this timeout to 0 will disable it. Default is 30m\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"idleTimeout\": {\n \"description\": \"IdleTimeout is defined as the period in which there are no bytes sent or received on connection\\nSetting this timeout to 0 will disable it. Be cautious when disabling it because\\nit can lead to connection leaking. Default value is 1h.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\ndestinations.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Timeout\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Timeout", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrace.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrace.json new file mode 100644 index 00000000000..1fefe510ca6 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrace.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTrace", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTrace resource.\",\n \"properties\": {\n \"default\": {\n \"description\": \"MeshTrace configuration.\",\n \"properties\": {\n \"backends\": {\n \"description\": \"A one element array of backend definition.\\nEnvoy allows configuring only 1 backend, so the natural way of\\nrepresenting that would be just one object. Unfortunately due to the\\nreasons explained in MADR 009-tracing-policy this has to be a one element\\narray for now.\",\n \"items\": {\n \"description\": \"Only one of zipkin, datadog or openTelemetry can be used.\",\n \"properties\": {\n \"datadog\": {\n \"description\": \"Datadog backend configuration.\",\n \"properties\": {\n \"splitService\": {\n \"default\": false,\n \"description\": \"Determines if datadog service name should be split based on traffic\\ndirection and destination. For example, with `splitService: true` and a\\n`backend` service that communicates with a couple of databases, you would\\nget service names like `backend_INBOUND`, `backend_OUTBOUND_db1`, and\\n`backend_OUTBOUND_db2` in Datadog.\",\n \"type\": \"boolean\"\n },\n \"url\": {\n \"description\": \"Address of Datadog collector, only host and port are allowed (no paths,\\nfragments etc.)\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"openTelemetry\": {\n \"description\": \"OpenTelemetry backend configuration.\",\n \"properties\": {\n \"endpoint\": {\n \"description\": \"Address of OpenTelemetry collector.\",\n \"example\": \"otel-collector:4317\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"endpoint\"\n ],\n \"type\": \"object\"\n },\n \"type\": {\n \"enum\": [\n \"Zipkin\",\n \"Datadog\",\n \"OpenTelemetry\"\n ],\n \"type\": \"string\"\n },\n \"zipkin\": {\n \"description\": \"Zipkin backend configuration.\",\n \"properties\": {\n \"apiVersion\": {\n \"default\": \"httpJson\",\n \"description\": \"Version of the API.\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/trace/v3/zipkin.proto#L66\",\n \"enum\": [\n \"httpJson\",\n \"httpProto\"\n ],\n \"type\": \"string\"\n },\n \"sharedSpanContext\": {\n \"default\": true,\n \"description\": \"Determines whether client and server spans will share the same span\\ncontext.\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/trace/v3/zipkin.proto#L63\",\n \"type\": \"boolean\"\n },\n \"traceId128bit\": {\n \"default\": false,\n \"description\": \"Generate 128bit traces.\",\n \"type\": \"boolean\"\n },\n \"url\": {\n \"description\": \"Address of Zipkin collector.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"maxItems\": 1,\n \"type\": \"array\"\n },\n \"sampling\": {\n \"description\": \"Sampling configuration.\\nSampling is the process by which a decision is made on whether to\\nprocess/export a span or not.\",\n \"properties\": {\n \"client\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests that will be force traced if the\\n'x-client-trace-id' header is set. Mirror of client_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L127-L133\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"overall\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests will be traced\\nafter all other sampling checks have been applied (client, force tracing,\\nrandom sampling). This field functions as an upper limit on the total\\nconfigured sampling rate. For instance, setting client_sampling to 100%\\nbut overall_sampling to 1% will result in only 1% of client requests with\\nthe appropriate headers to be force traced. Mirror of\\noverall_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L142-L150\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"random\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"default\": \"100%\",\n \"description\": \"Target percentage of requests that will be randomly selected for trace\\ngeneration, if not requested by the client or not forced.\\nMirror of random_sampling in Envoy\\nhttps://github.com/envoyproxy/envoy/blob/v1.22.0/api/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.proto#L135-L140\\nEither int or decimal represented as string.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"tags\": {\n \"description\": \"Custom tags configuration. You can add custom tags to traces based on\\nheaders or literal values.\",\n \"items\": {\n \"description\": \"Custom tags configuration.\\nOnly one of literal or header can be used.\",\n \"properties\": {\n \"header\": {\n \"description\": \"Tag taken from a header.\",\n \"properties\": {\n \"default\": {\n \"description\": \"Default value to use if header is missing.\\nIf the default is missing and there is no value the tag will not be\\nincluded.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the header.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"literal\": {\n \"description\": \"Tag taken from literal value.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the tag.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Trace\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Trace", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrafficPermission.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrafficPermission.json new file mode 100644 index 00000000000..c397a2b2707 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/MeshTrafficPermission.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MeshTrafficPermission", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma MeshTrafficPermission resource.\",\n \"properties\": {\n \"from\": {\n \"description\": \"From list makes a match between clients and corresponding configurations\",\n \"items\": {\n \"properties\": {\n \"default\": {\n \"description\": \"Default is a configuration specific to the group of clients referenced in\\n'targetRef'\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action defines a behavior for the specified group of clients:\",\n \"enum\": [\n \"Allow\",\n \"Deny\",\n \"AllowWithShadowDeny\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource that represents a group of\\nclients.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targetRef\": {\n \"description\": \"TargetRef is a reference to the resource the policy takes an effect on.\\nThe resource could be either a real store object or virtual resource\\ndefined inplace.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource\",\n \"enum\": [\n \"Mesh\",\n \"MeshSubset\",\n \"MeshGateway\",\n \"MeshService\",\n \"MeshExternalService\",\n \"MeshServiceSubset\",\n \"MeshHTTPRoute\"\n ],\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels are used to select group of MeshServices that match labels. Either Labels or\\nName and Namespace can be used.\",\n \"type\": \"object\"\n },\n \"mesh\": {\n \"description\": \"Mesh is reserved for future use to identify cross mesh resources.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referenced resource. Can only be used with kinds: `MeshService`,\\n`MeshServiceSubset` and `MeshGatewayRoute`\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace specifies the namespace of target resource. If empty only resources in policy namespace\\nwill be targeted.\",\n \"type\": \"string\"\n },\n \"proxyTypes\": {\n \"description\": \"ProxyTypes specifies the data plane types that are subject to the policy. When not specified,\\nall data plane types are targeted by the policy.\",\n \"items\": {\n \"enum\": [\n \"Sidecar\",\n \"Gateway\"\n ],\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"sectionName\": {\n \"description\": \"SectionName is used to target specific section of resource.\\nFor example, you can target port from MeshService.ports[] by its name. Only traffic to this port will be affected.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Tags used to select a subset of proxies by tags. Can only be used with kinds\\n`MeshSubset` and `MeshServiceSubset`\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targetRef\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Mesh Traffic Permission\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Mesh Traffic Permission", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ProxyTemplate.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ProxyTemplate.json new file mode 100644 index 00000000000..73b894ae76a --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ProxyTemplate.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ProxyTemplate", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ProxyTemplate resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Proxy Template\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Proxy Template", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/RateLimit.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/RateLimit.json new file mode 100644 index 00000000000..02a0c691fb0 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/RateLimit.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "RateLimit", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma RateLimit resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Rate Limit\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Rate Limit", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/Retry.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Retry.json new file mode 100644 index 00000000000..2c8b6423197 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Retry.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Retry", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Retry resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Retry\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Retry", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ServiceInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ServiceInsight.json new file mode 100644 index 00000000000..db094049570 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ServiceInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ServiceInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ServiceInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Service Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Service Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/Timeout.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Timeout.json new file mode 100644 index 00000000000..8433eaf904d --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Timeout.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Timeout", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Timeout resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Timeout\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Timeout", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficLog.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficLog.json new file mode 100644 index 00000000000..25b42f24454 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficLog.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficLog", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficLog resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Log\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Log", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficPermission.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficPermission.json new file mode 100644 index 00000000000..29cc535f94e --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficPermission.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficPermission", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficPermission resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Permission\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Permission", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficRoute.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficRoute.json new file mode 100644 index 00000000000..4f35e8db5d8 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficRoute.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficRoute", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficRoute resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Route\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Route", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficTrace.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficTrace.json new file mode 100644 index 00000000000..8ae9794d24b --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/TrafficTrace.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "TrafficTrace", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma TrafficTrace resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Traffic Trace\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Traffic Trace", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/VirtualOutbound.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/VirtualOutbound.json new file mode 100644 index 00000000000..ce6797faa5f --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/VirtualOutbound.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VirtualOutbound", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma VirtualOutbound resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Virtual Outbound\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Virtual Outbound", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/Zone.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Zone.json new file mode 100644 index 00000000000..594723d7160 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/Zone.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Zone", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma Zone resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "rectangle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgress.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgress.json new file mode 100644 index 00000000000..0db86f07192 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgress.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneEgress", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneEgress resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Egress\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Egress", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgressInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgressInsight.json new file mode 100644 index 00000000000..e2aaddc7073 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneEgressInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneEgressInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneEgressInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Egress Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Egress Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngress.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngress.json new file mode 100644 index 00000000000..17b870dca8e --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngress.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneIngress", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneIngress resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Ingress\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Ingress", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngressInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngressInsight.json new file mode 100644 index 00000000000..99d26a77116 --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneIngressInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneIngressInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneIngressInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Ingress Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Ingress Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneInsight.json b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneInsight.json new file mode 100644 index 00000000000..696084a8b0b --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/components/ZoneInsight.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ZoneInsight", + "schema": "{\n \"properties\": {\n \"mesh\": {\n \"description\": \"Mesh is the name of the Kuma mesh this resource belongs to.\\nIt may be omitted for cluster-scoped resources.\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Spec is the specification of the Kuma ZoneInsight resource.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"title\": \"Zone Insight\",\n \"type\": \"object\"\n}", + "version": "kuma.io/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Zone Insight", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz" + }, + "model": { + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "source_uri": "https://github.com/kumahq/charts/releases/download/kuma-2.8.3/kuma-2.8.3.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "svgColor": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\"\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgWhite": "\u003csvg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1173.18 1173.18\" width='1173.18' height='1173.18'\u003e\u003cdefs\u003e\u003cstyle\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"/\u003e\u003cpath class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"/\u003e\u003crect class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"/\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/kuma/2.8.3/v1.0.0/model.json b/server/meshmodel/kuma/2.8.3/v1.0.0/model.json new file mode 100644 index 00000000000..6f49e12207e --- /dev/null +++ b/server/meshmodel/kuma/2.8.3/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Cloud Native Network" + }, + "displayName": "Kuma", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#291953", + "secondaryColor": "#6942c9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#291953;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1173.18 1173.18\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:none;}\u003c/style\u003e\u003c/defs\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\"\u003e\u003cg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1-2\" data-name=\"Layer 1-2\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M887.62,422.54a6.21,6.21,0,0,1,1-5.9c24.85-31.37,47.4-67.46,47.4-95.14C936,260,900.91,210,824.51,210c-37.85,0-65.61,12.3-83.86,32.11a6.39,6.39,0,0,1-6.68,1.8,570.26,570.26,0,0,0-89.24-21.12,6.24,6.24,0,0,0-7,5.35,6.14,6.14,0,0,0,.16,2.45c6.31,23.66,44.2,174,74.71,288.44,18.45,69.26-29.36,137.3-101,137.09H567.19c-72.42,0-116.38-68.28-99.69-136.35,28.17-115,66.76-264.17,73-288.77a6.19,6.19,0,0,0-4.37-7.59,6,6,0,0,0-2.39-.16,486.69,486.69,0,0,0-103.38,23.66,6.37,6.37,0,0,1-7-1.93c-18.24-21.45-46.7-34.86-86.11-34.86-76.4,0-111.5,49.91-111.5,111.5,0,32.28,30.67,76,59.87,110.31a6.36,6.36,0,0,1,1.15,6.07l-49.7,144.35a1.14,1.14,0,0,0,0,.45c-1.31,5-20.51,90.22,125.32,225.79C406,849.23,558,995.66,585.35,1021.83a6.16,6.16,0,0,0,8.49,0c28.09-26.13,185.77-172.48,229.65-213.24,157.55-146.93,120-226.24,120-226.24Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M619.23,560.53H559.85a17.8,17.8,0,0,1-17.8-17.79v-.09l-7.38-73.11a17.8,17.8,0,0,1,17.8-17.8h73.85a17.8,17.8,0,0,1,17.84,17.76v0l-7.09,73.11a17.8,17.8,0,0,1-17.72,17.88Z\"\u003e\u003c/path\u003e\u003crect xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" width=\"1173.18\" height=\"1173.18\"\u003e\u003c/rect\u003e\u003c/g\u003e\u003c/g\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "2.8.3" + }, + "name": "kuma", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Service Mesh", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/loki/1.7.3/v1.0.0/model.json b/server/meshmodel/loki/1.7.3/v1.0.0/model.json new file mode 100644 index 00000000000..4f0ed626dd4 --- /dev/null +++ b/server/meshmodel/loki/1.7.3/v1.0.0/model.json @@ -0,0 +1,43 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "description": "Loki is a horizontally scalable, highly available, multi-tenant log aggregation system inspired by Prometheus. It is designed to be very cost effective and easy to operate. It does not index the contents of the logs, but rather a set of labels for each log stream.", + "displayName": "Loki", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#F15B2B", + "secondaryColor": "#FAED1E", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 56\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M12.0478 54.9248L11.3838 50.4663L6.92529 51.1304L7.68418 55.5889L12.0478 54.9248Z\" fill=\"url(#paint0_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M46.957 42.4032L46.1981 38.0396L26.7515 41.0751L27.3206 45.4388L46.957 42.4032Z\" fill=\"url(#paint1_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M20.395 46.5772L24.8535 45.8183L24.1895 41.4546L19.731 42.1186L20.395 46.5772Z\" fill=\"url(#paint2_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M19.0674 53.7865L18.3085 49.4229L13.9448 50.0869L14.514 54.5454L19.0674 53.7865Z\" fill=\"url(#paint3_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M5.88135 44.2055L6.54539 48.6641L11.0039 48L10.3399 43.5415L5.88135 44.2055Z\" fill=\"url(#paint4_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.6997 47.9051L28.4586 52.4585L48.0001 49.4229L47.3361 44.9644L27.6997 47.9051Z\" fill=\"url(#paint5_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M21.5333 53.407L25.8969 52.8378L25.2329 48.2844L20.7744 49.0433L21.5333 53.407Z\" fill=\"url(#paint6_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M12.8062 43.1621L13.565 47.6205L17.9287 46.9566L17.2646 42.498L12.8062 43.1621Z\" fill=\"url(#paint7_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.39921 41.4546L1.99207 5.97632L0 6.26089L5.50197 41.7392L7.39921 41.4546Z\" fill=\"url(#paint8_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.96032 41.0751L4.07888 2.94067L2.18164 3.32014L8.06308 41.3597L9.96032 41.0751Z\" fill=\"url(#paint9_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M14.3245 40.4111L8.15847 0L6.26123 0.379412L12.4272 40.6008L14.3245 40.4111Z\" fill=\"url(#paint10_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.8852 40.0315L11.1935 3.2251L9.39111 3.50967L15.0828 40.2212L16.8852 40.0315Z\" fill=\"url(#paint11_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M21.2491 39.2728L16.2215 6.64038L14.3242 6.92495L19.3519 39.6523L21.2491 39.2728Z\" fill=\"url(#paint12_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.8104 38.8935L18.593 5.02783L16.6958 5.31241L22.0081 39.1781L23.8104 38.8935Z\" fill=\"url(#paint13_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_17931_893\" x1=\"11.6469\" y1=\"66.8772\" x2=\"1.23198\" y2=\"-0.802501\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint1_linear_17931_893\" x1=\"39.9916\" y1=\"62.5154\" x2=\"29.5768\" y2=\"-5.1639\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint2_linear_17931_893\" x1=\"25.5063\" y1=\"64.7445\" x2=\"15.0913\" y2=\"-2.93516\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint3_linear_17931_893\" x1=\"18.5788\" y1=\"65.8105\" x2=\"8.1638\" y2=\"-1.86922\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint4_linear_17931_893\" x1=\"11.6394\" y1=\"66.8784\" x2=\"1.22448\" y2=\"-0.80128\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint5_linear_17931_893\" x1=\"39.9982\" y1=\"62.5143\" x2=\"29.5833\" y2=\"-5.16528\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint6_linear_17931_893\" x1=\"25.506\" y1=\"64.7443\" x2=\"15.091\" y2=\"-2.93537\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint7_linear_17931_893\" x1=\"18.5788\" y1=\"65.8103\" x2=\"8.16407\" y2=\"-1.86867\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint8_linear_17931_893\" x1=\"10.1623\" y1=\"65.7597\" x2=\"0.284696\" y2=\"1.57166\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint9_linear_17931_893\" x1=\"13.0129\" y1=\"67.1431\" x2=\"2.40785\" y2=\"-1.77243\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint10_linear_17931_893\" x1=\"17.6338\" y1=\"68.0331\" x2=\"6.38943\" y2=\"-5.0367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint11_linear_17931_893\" x1=\"19.8305\" y1=\"65.208\" x2=\"9.57925\" y2=\"-1.40832\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint12_linear_17931_893\" x1=\"23.7353\" y1=\"61.7393\" x2=\"14.6289\" y2=\"2.56246\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint13_linear_17931_893\" x1=\"26.4465\" y1=\"62.1967\" x2=\"16.9911\" y2=\"0.751851\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FAED1E\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F15B2B\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 48 56\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M12.0478 54.9248L11.3838 50.4663L6.92529 51.1304L7.68418 55.5889L12.0478 54.9248Z\" fill=\"url(#paint0_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M46.957 42.4032L46.1981 38.0396L26.7515 41.0751L27.3206 45.4388L46.957 42.4032Z\" fill=\"url(#paint1_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M20.395 46.5772L24.8535 45.8183L24.1895 41.4546L19.731 42.1186L20.395 46.5772Z\" fill=\"url(#paint2_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M19.0674 53.7865L18.3085 49.4229L13.9448 50.0869L14.514 54.5454L19.0674 53.7865Z\" fill=\"url(#paint3_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M5.88135 44.2055L6.54539 48.6641L11.0039 48L10.3399 43.5415L5.88135 44.2055Z\" fill=\"url(#paint4_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.6997 47.9051L28.4586 52.4585L48.0001 49.4229L47.3361 44.9644L27.6997 47.9051Z\" fill=\"url(#paint5_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M21.5333 53.407L25.8969 52.8378L25.2329 48.2844L20.7744 49.0433L21.5333 53.407Z\" fill=\"url(#paint6_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M12.8062 43.1621L13.565 47.6205L17.9287 46.9566L17.2646 42.498L12.8062 43.1621Z\" fill=\"url(#paint7_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.39921 41.4546L1.99207 5.97632L0 6.26089L5.50197 41.7392L7.39921 41.4546Z\" fill=\"url(#paint8_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.96032 41.0751L4.07888 2.94067L2.18164 3.32014L8.06308 41.3597L9.96032 41.0751Z\" fill=\"url(#paint9_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M14.3245 40.4111L8.15847 0L6.26123 0.379412L12.4272 40.6008L14.3245 40.4111Z\" fill=\"url(#paint10_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.8852 40.0315L11.1935 3.2251L9.39111 3.50967L15.0828 40.2212L16.8852 40.0315Z\" fill=\"url(#paint11_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M21.2491 39.2728L16.2215 6.64038L14.3242 6.92495L19.3519 39.6523L21.2491 39.2728Z\" fill=\"url(#paint12_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.8104 38.8935L18.593 5.02783L16.6958 5.31241L22.0081 39.1781L23.8104 38.8935Z\" fill=\"url(#paint13_linear_17931_893)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_17931_893\" x1=\"11.6469\" y1=\"66.8772\" x2=\"1.23198\" y2=\"-0.802501\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint1_linear_17931_893\" x1=\"39.9916\" y1=\"62.5154\" x2=\"29.5768\" y2=\"-5.1639\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint2_linear_17931_893\" x1=\"25.5063\" y1=\"64.7445\" x2=\"15.0913\" y2=\"-2.93516\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint3_linear_17931_893\" x1=\"18.5788\" y1=\"65.8105\" x2=\"8.1638\" y2=\"-1.86922\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint4_linear_17931_893\" x1=\"11.6394\" y1=\"66.8784\" x2=\"1.22448\" y2=\"-0.80128\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint5_linear_17931_893\" x1=\"39.9982\" y1=\"62.5143\" x2=\"29.5833\" y2=\"-5.16528\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint6_linear_17931_893\" x1=\"25.506\" y1=\"64.7443\" x2=\"15.091\" y2=\"-2.93537\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint7_linear_17931_893\" x1=\"18.5788\" y1=\"65.8103\" x2=\"8.16407\" y2=\"-1.86867\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint8_linear_17931_893\" x1=\"10.1623\" y1=\"65.7597\" x2=\"0.284696\" y2=\"1.57166\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint9_linear_17931_893\" x1=\"13.0129\" y1=\"67.1431\" x2=\"2.40785\" y2=\"-1.77243\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint10_linear_17931_893\" x1=\"17.6338\" y1=\"68.0331\" x2=\"6.38943\" y2=\"-5.0367\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint11_linear_17931_893\" x1=\"19.8305\" y1=\"65.208\" x2=\"9.57925\" y2=\"-1.40832\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint12_linear_17931_893\" x1=\"23.7353\" y1=\"61.7393\" x2=\"14.6289\" y2=\"2.56246\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint13_linear_17931_893\" x1=\"26.4465\" y1=\"62.1967\" x2=\"16.9911\" y2=\"0.751851\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#FFFFFF\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "1.7.3" + }, + "name": "loki", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Logging", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/longhorn/v1.7.1-rc3/v1.0.0/model.json b/server/meshmodel/longhorn/v1.7.1-rc3/v1.0.0/model.json new file mode 100644 index 00000000000..95efa6d816c --- /dev/null +++ b/server/meshmodel/longhorn/v1.7.1-rc3/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Cloud Native Storage" + }, + "displayName": "Longhorn", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#5f224a", + "secondaryColor": "#A4678F", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 356.98001 294.48001\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff;}.cls-2{fill:#5f224a;}\u003c/style\u003e\u003c/defs\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-1\" d=\"M305.04962,60.25259A17.66336,17.66336,0,0,0,285.014,75.171l-2.60633,17.71484L178.62,113.60721,74.83228,92.88589,72.226,75.17111a17.66334,17.66334,0,0,0-34.95019,5.14368L41.69507,110.342a17.66417,17.66417,0,0,0,14.01666,14.74963l73.12793,14.60029,9.96423,61.30938a35.372,35.372,0,0,0,35.28821,33.66248h9.05408A35.37306,35.37306,0,0,0,218.424,201.20486L229.66864,139.648c.01318-.0719.01587-.14313.02826-.215l71.83142-14.3413a17.66412,17.66412,0,0,0,14.0166-14.7497l4.41919-30.02722.004-.02661A17.66337,17.66337,0,0,0,305.04962,60.25259ZM183.43433,196.163a17.65959,17.65959,0,0,0-.28809,3.17469h-9.05408a17.5322,17.5322,0,0,0-.22943-2.834l-8.03424-49.42682,9.33307,1.86335a17.68063,17.68063,0,0,0,6.91693,0l10.36066-2.06855Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" d=\"M178.62,149.28177a17.67882,17.67882,0,0,1-3.45844-.34155l-9.33307-1.86335,8.03424,49.42682a17.5322,17.5322,0,0,1,.22943,2.834h9.05408a17.65959,17.65959,0,0,1,.28809-3.17469l9.00482-49.29132-10.36066,2.06855A17.679,17.679,0,0,1,178.62,149.28177Z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" class=\"cls-2\" d=\"M313.86163,6.87H43.3786A36.423,36.423,0,0,0,7.06219,43.18643V251.55356A36.42308,36.42308,0,0,0,43.3786,287.87h270.483a36.423,36.423,0,0,0,36.31623-36.31647V43.18643A36.423,36.423,0,0,0,313.86163,6.87Zm6.10645,73.41815-.004.02661L315.54492,110.342a17.66412,17.66412,0,0,1-14.0166,14.7497L229.6969,139.433c-.01239.0719-.01508.14313-.02826.215L218.424,201.20486a35.37306,35.37306,0,0,1-35.27783,33.45893H174.0921a35.372,35.372,0,0,1-35.28821-33.66248l-9.96423-61.30938L55.71173,125.09164A17.66417,17.66417,0,0,1,41.69507,110.342L37.27576,80.31479A17.66334,17.66334,0,0,1,72.226,75.17111l2.60633,17.71478L178.62,113.60721,282.40771,92.88589,285.014,75.171a17.66331,17.66331,0,1,1,34.954,5.11713Z\"\u003e\u003c/path\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"1.38 32.63 356.98 294.48\" height=\"20\" width=\"20\"\u003e\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.cls-1{fill:#fff}\u003c/style\u003e\u003c/defs\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M180 181.91174a17.6777 17.6777 0 0 1-3.45843-.34153l-9.33306-1.86334 8.03419 49.42682a17.52719 17.52719 0 0 1 .22943 2.834h9.05408a17.66259 17.66259 0 0 1 .28808-3.1747l9.00486-49.29129-10.36066 2.06849a17.67831 17.67831 0 0 1-3.45849.34155z\" class=\"cls-1\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M315.24162 39.5H44.7586A36.4231 36.4231 0 0 0 8.44217 75.81643v208.36714A36.4231 36.4231 0 0 0 44.7586 320.5h270.483a36.423 36.423 0 0 0 36.31621-36.31643V75.81643A36.423 36.423 0 0 0 315.24162 39.5zm6.10251 73.44476l-4.41922 30.02724a17.66413 17.66413 0 0 1-14.0166 14.74971L231.07689 172.063c-.01237.07191-.01508.14316-.02825.21506l-11.24464 61.5568a35.373 35.373 0 0 1-35.27783 33.4589h-9.05408a35.37184 35.37184 0 0 1-35.28818-33.66244l-9.96428-61.30942-73.1279-14.60028A17.66421 17.66421 0 0 1 43.07508 142.972l-4.4193-30.02719a17.66333 17.66333 0 0 1 34.95018-5.1437l2.60634 17.71481L180 146.2372l103.78771-20.72133 2.60633-17.71481a17.66328 17.66328 0 0 1 34.954 5.11714z\" class=\"cls-1\"\u003e\u003c/path\u003e\u003c/svg\u003e\n" + }, + "model": { + "version": "v1.7.1-rc3" + }, + "name": "longhorn", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "github", + "name": "Github", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Cloud Native Storage", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/GrafanaAgent.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/GrafanaAgent.json new file mode 100644 index 00000000000..893ff312d20 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/GrafanaAgent.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "GrafanaAgent", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"affinity\": {\n \"properties\": {\n \"nodeAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"preference\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"items\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"podAffinityTerm\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaces\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"apiServer\": {\n \"properties\": {\n \"authorization\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerToken\": {\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"host\": {\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"host\"\n ],\n \"type\": \"object\"\n },\n \"configMaps\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configReloaderImage\": {\n \"type\": \"string\"\n },\n \"configReloaderVersion\": {\n \"type\": \"string\"\n },\n \"containers\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"disableReporting\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"disableSupportBundle\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"enableConfigReadAPI\": {\n \"default\": false,\n \"type\": \"boolean\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"items\": {\n \"properties\": {\n \"args\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"properties\": {\n \"configMapKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"items\": {\n \"properties\": {\n \"configMapRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"properties\": {\n \"postStart\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"ports\": {\n \"items\": {\n \"properties\": {\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"items\": {\n \"properties\": {\n \"resourceName\": {\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"properties\": {\n \"add\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"properties\": {\n \"exec\": {\n \"properties\": {\n \"command\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"properties\": {\n \"port\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"properties\": {\n \"host\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"type\": \"string\"\n },\n \"tty\": {\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"items\": {\n \"properties\": {\n \"devicePath\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"integrations\": {\n \"properties\": {\n \"namespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"logFormat\": {\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"type\": \"string\"\n },\n \"logs\": {\n \"properties\": {\n \"clients\": {\n \"items\": {\n \"properties\": {\n \"backoffConfig\": {\n \"properties\": {\n \"maxPeriod\": {\n \"type\": \"string\"\n },\n \"maxRetries\": {\n \"type\": \"integer\"\n },\n \"minPeriod\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"batchSize\": {\n \"type\": \"integer\"\n },\n \"batchWait\": {\n \"type\": \"string\"\n },\n \"bearerToken\": {\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"externalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"enforcedNamespaceLabel\": {\n \"type\": \"string\"\n },\n \"ignoreNamespaceSelectors\": {\n \"type\": \"boolean\"\n },\n \"instanceNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"logsExternalLabelName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"metrics\": {\n \"properties\": {\n \"arbitraryFSAccessThroughSMs\": {\n \"properties\": {\n \"deny\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"enforcedNamespaceLabel\": {\n \"type\": \"string\"\n },\n \"enforcedSampleLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"enforcedTargetLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"externalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"ignoreNamespaceSelectors\": {\n \"type\": \"boolean\"\n },\n \"instanceNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"instanceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"metricsExternalLabelName\": {\n \"type\": \"string\"\n },\n \"overrideHonorLabels\": {\n \"type\": \"boolean\"\n },\n \"overrideHonorTimestamps\": {\n \"type\": \"boolean\"\n },\n \"remoteWrite\": {\n \"items\": {\n \"properties\": {\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerToken\": {\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"metadataConfig\": {\n \"properties\": {\n \"send\": {\n \"type\": \"boolean\"\n },\n \"sendInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"queueConfig\": {\n \"properties\": {\n \"batchSendDeadline\": {\n \"type\": \"string\"\n },\n \"capacity\": {\n \"type\": \"integer\"\n },\n \"maxBackoff\": {\n \"type\": \"string\"\n },\n \"maxRetries\": {\n \"type\": \"integer\"\n },\n \"maxSamplesPerSend\": {\n \"type\": \"integer\"\n },\n \"maxShards\": {\n \"type\": \"integer\"\n },\n \"minBackoff\": {\n \"type\": \"string\"\n },\n \"minShards\": {\n \"type\": \"integer\"\n },\n \"retryOnRateLimit\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"remoteTimeout\": {\n \"type\": \"string\"\n },\n \"sigv4\": {\n \"properties\": {\n \"accessKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"profile\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"type\": \"string\"\n },\n \"secretKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n },\n \"writeRelabelConfigs\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"replicaExternalLabelName\": {\n \"type\": \"string\"\n },\n \"replicas\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"scrapeInterval\": {\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"type\": \"string\"\n },\n \"shards\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"paused\": {\n \"type\": \"boolean\"\n },\n \"podMetadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"portName\": {\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"runtimeClassName\": {\n \"type\": \"string\"\n },\n \"secrets\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"properties\": {\n \"fsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"properties\": {\n \"level\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"properties\": {\n \"localhostProfile\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"type\": \"string\"\n },\n \"storage\": {\n \"properties\": {\n \"disableMountSubPath\": {\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"properties\": {\n \"medium\": {\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"metadata\": {\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"conditions\": {\n \"items\": {\n \"properties\": {\n \"lastProbeTime\": {\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"type\": \"string\"\n },\n \"reason\": {\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"phase\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"items\": {\n \"properties\": {\n \"effect\": {\n \"type\": \"string\"\n },\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"items\": {\n \"properties\": {\n \"labelSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"matchLabelKeys\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"items\": {\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"properties\": {\n \"cachingMode\": {\n \"type\": \"string\"\n },\n \"diskName\": {\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"properties\": {\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n },\n \"shareName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"properties\": {\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"properties\": {\n \"medium\": {\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"properties\": {\n \"datasetName\": {\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"revision\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"properties\": {\n \"endpoints\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"type\": \"string\"\n },\n \"iqn\": {\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nfs\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"server\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"properties\": {\n \"claimName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"pdID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"properties\": {\n \"audience\": {\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"tenant\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n },\n \"volume\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"keyring\": {\n \"type\": \"string\"\n },\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"gateway\": {\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"type\": \"string\"\n },\n \"system\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Grafana Agent\",\n \"type\": \"object\"\n}", + "version": "monitoring.grafana.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Grafana Agent", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Integration.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Integration.json new file mode 100644 index 00000000000..cedd9f7c084 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Integration.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Integration", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"config\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"secrets\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"type\": {\n \"properties\": {\n \"allNodes\": {\n \"type\": \"boolean\"\n },\n \"unique\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeMounts\": {\n \"items\": {\n \"properties\": {\n \"mountPath\": {\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"items\": {\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"properties\": {\n \"cachingMode\": {\n \"type\": \"string\"\n },\n \"diskName\": {\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"properties\": {\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n },\n \"shareName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"properties\": {\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"csi\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"properties\": {\n \"medium\": {\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"properties\": {\n \"metadata\": {\n \"type\": \"object\"\n },\n \"spec\": {\n \"properties\": {\n \"accessModes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"properties\": {\n \"apiGroup\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"namespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"properties\": {\n \"claims\": {\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"properties\": {\n \"driver\": {\n \"type\": \"string\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"properties\": {\n \"datasetName\": {\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"partition\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"properties\": {\n \"directory\": {\n \"type\": \"string\"\n },\n \"repository\": {\n \"type\": \"string\"\n },\n \"revision\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"properties\": {\n \"endpoints\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"type\": \"string\"\n },\n \"iqn\": {\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"type\": \"string\"\n },\n \"lun\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetPortal\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"nfs\": {\n \"properties\": {\n \"path\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"server\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"properties\": {\n \"claimName\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"pdID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"items\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"downwardAPI\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"fieldRef\": {\n \"properties\": {\n \"apiVersion\": {\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"properties\": {\n \"containerName\": {\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceAccountToken\": {\n \"properties\": {\n \"audience\": {\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"type\": \"string\"\n },\n \"tenant\": {\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"string\"\n },\n \"volume\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"image\": {\n \"type\": \"string\"\n },\n \"keyring\": {\n \"type\": \"string\"\n },\n \"monitors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"user\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"gateway\": {\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"sslEnabled\": {\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"type\": \"string\"\n },\n \"system\": {\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"properties\": {\n \"defaultMode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"mode\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeName\": {\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"properties\": {\n \"fsType\": {\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"config\",\n \"name\",\n \"type\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Integration\",\n \"type\": \"object\"\n}", + "version": "monitoring.grafana.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Integration", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/LogsInstance.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/LogsInstance.json new file mode 100644 index 00000000000..1dcf7f7b9af --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/LogsInstance.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "LogsInstance", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"additionalScrapeConfigs\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"clients\": {\n \"items\": {\n \"properties\": {\n \"backoffConfig\": {\n \"properties\": {\n \"maxPeriod\": {\n \"type\": \"string\"\n },\n \"maxRetries\": {\n \"type\": \"integer\"\n },\n \"minPeriod\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"batchSize\": {\n \"type\": \"integer\"\n },\n \"batchWait\": {\n \"type\": \"string\"\n },\n \"bearerToken\": {\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"externalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"tenantId\": {\n \"type\": \"string\"\n },\n \"timeout\": {\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"podLogsNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"podLogsSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetConfig\": {\n \"properties\": {\n \"syncPeriod\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Logs Instance\",\n \"type\": \"object\"\n}", + "version": "monitoring.grafana.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Logs Instance", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/MetricsInstance.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/MetricsInstance.json new file mode 100644 index 00000000000..a7c53ab01b2 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/MetricsInstance.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "MetricsInstance", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"additionalScrapeConfigs\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"maxWALTime\": {\n \"type\": \"string\"\n },\n \"minWALTime\": {\n \"type\": \"string\"\n },\n \"podMonitorNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"podMonitorSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"probeNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"probeSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"remoteFlushDeadline\": {\n \"type\": \"string\"\n },\n \"remoteWrite\": {\n \"items\": {\n \"properties\": {\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerToken\": {\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"metadataConfig\": {\n \"properties\": {\n \"send\": {\n \"type\": \"boolean\"\n },\n \"sendInterval\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"queueConfig\": {\n \"properties\": {\n \"batchSendDeadline\": {\n \"type\": \"string\"\n },\n \"capacity\": {\n \"type\": \"integer\"\n },\n \"maxBackoff\": {\n \"type\": \"string\"\n },\n \"maxRetries\": {\n \"type\": \"integer\"\n },\n \"maxSamplesPerSend\": {\n \"type\": \"integer\"\n },\n \"maxShards\": {\n \"type\": \"integer\"\n },\n \"minBackoff\": {\n \"type\": \"string\"\n },\n \"minShards\": {\n \"type\": \"integer\"\n },\n \"retryOnRateLimit\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"remoteTimeout\": {\n \"type\": \"string\"\n },\n \"sigv4\": {\n \"properties\": {\n \"accessKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"profile\": {\n \"type\": \"string\"\n },\n \"region\": {\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"type\": \"string\"\n },\n \"secretKey\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"type\": \"string\"\n },\n \"writeRelabelConfigs\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceMonitorNamespaceSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceMonitorSelector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"walTruncateFrequency\": {\n \"type\": \"string\"\n },\n \"writeStaleOnShutdown\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Metrics Instance\",\n \"type\": \"object\"\n}", + "version": "monitoring.grafana.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Metrics Instance", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodLogs.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodLogs.json new file mode 100644 index 00000000000..c2507324cd4 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodLogs.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "PodLogs", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"jobLabel\": {\n \"type\": \"string\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"any\": {\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"pipelineStages\": {\n \"items\": {\n \"properties\": {\n \"cri\": {\n \"type\": \"object\"\n },\n \"docker\": {\n \"type\": \"object\"\n },\n \"drop\": {\n \"properties\": {\n \"dropCounterReason\": {\n \"type\": \"string\"\n },\n \"expression\": {\n \"type\": \"string\"\n },\n \"longerThan\": {\n \"type\": \"string\"\n },\n \"olderThan\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"json\": {\n \"properties\": {\n \"expressions\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"labelAllow\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labelDrop\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"limit\": {\n \"properties\": {\n \"burst\": {\n \"type\": \"integer\"\n },\n \"drop\": {\n \"type\": \"boolean\"\n },\n \"rate\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"match\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\"\n },\n \"dropCounterReason\": {\n \"type\": \"string\"\n },\n \"pipelineName\": {\n \"type\": \"string\"\n },\n \"selector\": {\n \"type\": \"string\"\n },\n \"stages\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"selector\"\n ],\n \"type\": \"object\"\n },\n \"metrics\": {\n \"additionalProperties\": {\n \"properties\": {\n \"action\": {\n \"type\": \"string\"\n },\n \"buckets\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"countEntryBytes\": {\n \"type\": \"boolean\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"matchAll\": {\n \"type\": \"boolean\"\n },\n \"maxIdleDuration\": {\n \"type\": \"string\"\n },\n \"prefix\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"action\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"object\"\n },\n \"multiline\": {\n \"properties\": {\n \"firstLine\": {\n \"type\": \"string\"\n },\n \"maxLines\": {\n \"type\": \"integer\"\n },\n \"maxWaitTime\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"firstLine\"\n ],\n \"type\": \"object\"\n },\n \"output\": {\n \"properties\": {\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"source\"\n ],\n \"type\": \"object\"\n },\n \"pack\": {\n \"properties\": {\n \"ingestTimestamp\": {\n \"type\": \"boolean\"\n },\n \"labels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"labels\"\n ],\n \"type\": \"object\"\n },\n \"regex\": {\n \"properties\": {\n \"expression\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"expression\"\n ],\n \"type\": \"object\"\n },\n \"replace\": {\n \"properties\": {\n \"expression\": {\n \"type\": \"string\"\n },\n \"replace\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"expression\"\n ],\n \"type\": \"object\"\n },\n \"template\": {\n \"properties\": {\n \"source\": {\n \"type\": \"string\"\n },\n \"template\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"source\",\n \"template\"\n ],\n \"type\": \"object\"\n },\n \"tenant\": {\n \"properties\": {\n \"label\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"timestamp\": {\n \"properties\": {\n \"actionOnFailure\": {\n \"type\": \"string\"\n },\n \"fallbackFormats\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"format\": {\n \"type\": \"string\"\n },\n \"location\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"format\",\n \"source\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"podTargetLabels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"relabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"selector\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"Pod Logs\",\n \"type\": \"object\"\n}", + "version": "monitoring.grafana.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Pod Logs", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodMonitor.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodMonitor.json new file mode 100644 index 00000000000..38e99324325 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/PodMonitor.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "PodMonitor", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"attachMetadata\": {\n \"properties\": {\n \"node\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"jobLabel\": {\n \"type\": \"string\"\n },\n \"labelLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelNameLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelValueLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"any\": {\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetricsEndpoints\": {\n \"items\": {\n \"properties\": {\n \"authorization\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"enableHttp2\": {\n \"type\": \"boolean\"\n },\n \"filterRunning\": {\n \"type\": \"boolean\"\n },\n \"followRedirects\": {\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"metricRelabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"relabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"scheme\": {\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"podTargetLabels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podMetricsEndpoints\",\n \"selector\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Pod Monitor\",\n \"type\": \"object\"\n}", + "version": "monitoring.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Pod Monitor", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Probe.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Probe.json new file mode 100644 index 00000000000..7989003170b --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/Probe.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Probe", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"authorization\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"interval\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"jobName\": {\n \"type\": \"string\"\n },\n \"labelLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelNameLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelValueLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"metricRelabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"module\": {\n \"type\": \"string\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"prober\": {\n \"properties\": {\n \"path\": {\n \"default\": \"/probe\",\n \"type\": \"string\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"scheme\": {\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"sampleLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scrapeTimeout\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"targetLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targets\": {\n \"properties\": {\n \"ingress\": {\n \"properties\": {\n \"namespaceSelector\": {\n \"properties\": {\n \"any\": {\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"relabelingConfigs\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"staticConfig\": {\n \"properties\": {\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"relabelingConfigs\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"static\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Probe\",\n \"type\": \"object\"\n}", + "version": "monitoring.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Probe", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/ServiceMonitor.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/ServiceMonitor.json new file mode 100644 index 00000000000..e259602261c --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/components/ServiceMonitor.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ServiceMonitor", + "schema": "{\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"attachMetadata\": {\n \"properties\": {\n \"node\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"endpoints\": {\n \"items\": {\n \"properties\": {\n \"authorization\": {\n \"properties\": {\n \"credentials\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"properties\": {\n \"password\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"enableHttp2\": {\n \"type\": \"boolean\"\n },\n \"filterRunning\": {\n \"type\": \"boolean\"\n },\n \"followRedirects\": {\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"metricRelabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"properties\": {\n \"clientId\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"clientSecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"endpointParams\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"scopes\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tokenUrl\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"clientId\",\n \"clientSecret\",\n \"tokenUrl\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"port\": {\n \"type\": \"string\"\n },\n \"proxyUrl\": {\n \"type\": \"string\"\n },\n \"relabelings\": {\n \"items\": {\n \"properties\": {\n \"action\": {\n \"default\": \"replace\",\n \"enum\": [\n \"replace\",\n \"Replace\",\n \"keep\",\n \"Keep\",\n \"drop\",\n \"Drop\",\n \"hashmod\",\n \"HashMod\",\n \"labelmap\",\n \"LabelMap\",\n \"labeldrop\",\n \"LabelDrop\",\n \"labelkeep\",\n \"LabelKeep\",\n \"lowercase\",\n \"Lowercase\",\n \"uppercase\",\n \"Uppercase\",\n \"keepequal\",\n \"KeepEqual\",\n \"dropequal\",\n \"DropEqual\"\n ],\n \"type\": \"string\"\n },\n \"modulus\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"type\": \"string\"\n },\n \"replacement\": {\n \"type\": \"string\"\n },\n \"separator\": {\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"items\": {\n \"pattern\": \"^[a-zA-Z_][a-zA-Z0-9_]*$\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"scheme\": {\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"pattern\": \"^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$\",\n \"type\": \"string\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsConfig\": {\n \"properties\": {\n \"ca\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"type\": \"string\"\n },\n \"cert\": {\n \"properties\": {\n \"configMap\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"optional\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jobLabel\": {\n \"type\": \"string\"\n },\n \"labelLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelNameLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"labelValueLengthLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"namespaceSelector\": {\n \"properties\": {\n \"any\": {\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podTargetLabels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"properties\": {\n \"matchExpressions\": {\n \"items\": {\n \"properties\": {\n \"key\": {\n \"type\": \"string\"\n },\n \"operator\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targetLabels\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLimit\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"selector\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"Service Monitor\",\n \"type\": \"object\"\n}", + "version": "monitoring.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Service Monitor", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "source_uri": "https://github.com/grafana/helm-charts/releases/download/mimir-distributed-5.5.0-weekly.306/mimir-distributed-5.5.0-weekly.306.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "svgColor": "\u003csvg width=\"65\" height=\"46\" viewBox=\"0 0 65 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cpath d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"/\u003e\n\u003cdefs\u003e\n\u003clinearGradient id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop stop-color=\"#F2C144\"/\u003e\n\u003cstop offset=\"0.24\" stop-color=\"#F1A03B\"/\u003e\n\u003cstop offset=\"0.57\" stop-color=\"#F17A31\"/\u003e\n\u003cstop offset=\"0.84\" stop-color=\"#F0632A\"/\u003e\n\u003cstop offset=\"1\" stop-color=\"#F05A28\"/\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 103.7 112.7\" style=\"enable-background:new 0 0 103.7 112.7;\" xml:space=\"preserve\" width='103.7' height='112.7'\u003e\n\u003cstyle type=\"text/css\"\u003e\n .st0{fill:#FFFFFF;}\n\u003c/style\u003e\n\u003cpath class=\"st0\" d=\"M103.5,49.9c-0.2-1.9-0.5-4.1-1.1-6.5c-0.6-2.4-1.6-5-2.9-7.8c-1.4-2.7-3.1-5.6-5.4-8.3\n c-0.9-1.1-1.9-2.1-2.9-3.2c1.6-6.3-1.9-11.8-1.9-11.8c-6.1-0.4-9.9,1.9-11.3,2.9c-0.2-0.1-0.5-0.2-0.7-0.3c-1-0.4-2.1-0.8-3.2-1.2\n c-1.1-0.3-2.2-0.7-3.3-0.9c-1.1-0.3-2.3-0.5-3.5-0.7c-0.2,0-0.4-0.1-0.6-0.1C64.1,3.6,56.5,0,56.5,0c-8.7,5.6-10.4,13.1-10.4,13.1\n s0,0.2-0.1,0.4c-0.5,0.1-0.9,0.3-1.4,0.4c-0.6,0.2-1.3,0.4-1.9,0.7c-0.6,0.3-1.3,0.5-1.9,0.8c-1.3,0.6-2.5,1.2-3.8,1.9\n c-1.2,0.7-2.4,1.4-3.5,2.2c-0.2-0.1-0.3-0.2-0.3-0.2c-11.7-4.5-22.1,0.9-22.1,0.9c-0.9,12.5,4.7,20.3,5.8,21.7\n c-0.3,0.8-0.5,1.5-0.8,2.3c-0.9,2.8-1.5,5.7-1.9,8.7c-0.1,0.4-0.1,0.9-0.2,1.3C3.2,59.5,0,70.5,0,70.5c9,10.4,19.6,11,19.6,11l0,0\n c1.3,2.4,2.9,4.7,4.6,6.8c0.7,0.9,1.5,1.7,2.3,2.6c-3.3,9.4,0.5,17.3,0.5,17.3c10.1,0.4,16.7-4.4,18.1-5.5c1,0.3,2,0.6,3,0.9\n c3.1,0.8,6.3,1.3,9.4,1.4c0.8,0,1.6,0,2.4,0h0.4h0.3h0.5h0.5l0,0c4.7,6.8,13.1,7.7,13.1,7.7c5.9-6.3,6.3-12.4,6.3-13.8l0,0\n c0,0,0,0,0-0.1s0-0.2,0-0.2l0,0c0-0.1,0-0.2,0-0.3c1.2-0.9,2.4-1.8,3.6-2.8c2.4-2.1,4.4-4.6,6.2-7.2c0.2-0.2,0.3-0.5,0.5-0.7\n c6.7,0.4,11.4-4.2,11.4-4.2c-1.1-7-5.1-10.4-5.9-11l0,0c0,0,0,0-0.1-0.1l-0.1-0.1l0,0l-0.1-0.1c0-0.4,0.1-0.8,0.1-1.3\n c0.1-0.8,0.1-1.5,0.1-2.3v-0.6v-0.3v-0.1c0-0.2,0-0.1,0-0.2v-0.5v-0.6c0-0.2,0-0.4,0-0.6s0-0.4-0.1-0.6l-0.1-0.6l-0.1-0.6\n c-0.1-0.8-0.3-1.5-0.4-2.3c-0.7-3-1.9-5.9-3.4-8.4c-1.6-2.6-3.5-4.8-5.7-6.8c-2.2-1.9-4.6-3.5-7.2-4.6c-2.6-1.2-5.2-1.9-7.9-2.2\n c-1.3-0.2-2.7-0.2-4-0.2h-0.5h-0.1H67h-0.2h-0.5c-0.2,0-0.4,0-0.5,0c-0.7,0.1-1.4,0.2-2,0.3c-2.7,0.5-5.2,1.5-7.4,2.8\n c-2.2,1.3-4.1,3-5.7,4.9s-2.8,3.9-3.6,6.1c-0.8,2.1-1.3,4.4-1.4,6.5c0,0.5,0,1.1,0,1.6c0,0.1,0,0.3,0,0.4v0.4c0,0.3,0,0.5,0.1,0.8\n c0.1,1.1,0.3,2.1,0.6,3.1c0.6,2,1.5,3.8,2.7,5.4s2.5,2.8,4,3.8s3,1.7,4.6,2.2s3.1,0.7,4.5,0.6c0.2,0,0.4,0,0.5,0s0.2,0,0.3,0\n s0.2,0,0.3,0c0.2,0,0.3,0,0.5,0h0.1H64c0.1,0,0.2,0,0.3,0c0.2,0,0.4-0.1,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1c0.3-0.1,0.7-0.2,1-0.3\n c0.6-0.2,1.2-0.5,1.8-0.7c0.6-0.3,1.1-0.6,1.5-0.9c0.1-0.1,0.3-0.2,0.4-0.3c0.5-0.4,0.6-1.1,0.2-1.6c-0.4-0.4-1-0.5-1.5-0.3\n c-0.1,0.1-0.2,0.1-0.4,0.2c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.3-1.5,0.4c-0.3,0-0.5,0.1-0.8,0.1c-0.1,0-0.3,0-0.4,0\n c-0.1,0-0.3,0-0.4,0s-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c0,0-0.1,0,0,0h-0.1h-0.1c-0.1,0-0.1,0-0.2,0s-0.3,0-0.4-0.1\n c-1.1-0.2-2.3-0.5-3.4-1s-2.2-1.2-3.1-2.1c-1-0.9-1.8-1.9-2.5-3.1s-1.1-2.5-1.3-3.8c-0.1-0.7-0.2-1.4-0.1-2.1c0-0.2,0-0.4,0-0.6\n c0,0.1,0,0,0,0v-0.1v-0.1c0-0.1,0-0.2,0-0.3c0-0.4,0.1-0.7,0.2-1.1c0.5-3,2-5.9,4.3-8.1c0.6-0.6,1.2-1.1,1.9-1.5\n c0.7-0.5,1.4-0.9,2.1-1.2s1.5-0.6,2.3-0.8s1.6-0.4,2.4-0.4c0.4,0,0.8-0.1,1.2-0.1c0.1,0,0.2,0,0.3,0h0.3H67c0.1,0,0,0,0,0h0.1h0.3\n c0.9,0.1,1.8,0.2,2.6,0.4c1.7,0.4,3.4,1,5,1.9c3.2,1.8,5.9,4.5,7.5,7.8c0.8,1.6,1.4,3.4,1.7,5.3c0.1,0.5,0.1,0.9,0.2,1.4v0.3V66\n c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3v0.3v0.3c0,0.2,0,0.6,0,0.8c0,0.5-0.1,1-0.1,1.5c-0.1,0.5-0.1,1-0.2,1.5\n c-0.1,0.5-0.2,1-0.3,1.5c-0.2,1-0.6,1.9-0.9,2.9c-0.7,1.9-1.7,3.7-2.9,5.3c-2.4,3.3-5.7,6-9.4,7.7c-1.9,0.8-3.8,1.5-5.8,1.8\n c-1,0.2-2,0.3-3,0.3h-0.2h-0.2h-0.3h-0.5h-0.3c0.1,0,0,0,0,0h-0.1c-0.5,0-1.1,0-1.6-0.1c-2.2-0.2-4.3-0.6-6.4-1.2s-4.1-1.4-6-2.4\n c-3.8-2-7.2-4.9-9.9-8.2c-1.3-1.7-2.5-3.5-3.5-5.4s-1.7-3.9-2.3-5.9s-0.9-4.1-1-6.2v-0.4v-0.1v-0.1v-0.2V60v-0.1v-0.1v-0.2v-0.5V59\n l0,0v-0.2c0-0.3,0-0.5,0-0.8c0-1,0.1-2.1,0.3-3.2c0.1-1.1,0.3-2.1,0.5-3.2c0.2-1.1,0.5-2.1,0.8-3.2c0.6-2.1,1.3-4.1,2.2-6\n c1.8-3.8,4.1-7.2,6.8-9.9c0.7-0.7,1.4-1.3,2.2-1.9c0.3-0.3,1-0.9,1.8-1.4s1.6-1,2.5-1.4c0.4-0.2,0.8-0.4,1.3-0.6\n c0.2-0.1,0.4-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.7-0.3c0.9-0.4,1.8-0.7,2.7-1c0.2-0.1,0.5-0.1,0.7-0.2s0.5-0.1,0.7-0.2\n c0.5-0.1,0.9-0.2,1.4-0.4c0.2-0.1,0.5-0.1,0.7-0.2c0.2,0,0.5-0.1,0.7-0.1s0.5-0.1,0.7-0.1l0.4-0.1l0.4-0.1c0.2,0,0.5-0.1,0.7-0.1\n c0.3,0,0.5-0.1,0.8-0.1c0.2,0,0.6-0.1,0.8-0.1c0.2,0,0.3,0,0.5-0.1h0.3H61h0.2c0.3,0,0.5,0,0.8-0.1h0.4c0,0,0.1,0,0,0h0.1h0.2\n c0.2,0,0.5,0,0.7,0c0.9,0,1.8,0,2.7,0c1.8,0.1,3.6,0.3,5.3,0.6c3.4,0.6,6.7,1.7,9.6,3.2c2.9,1.4,5.6,3.2,7.8,5.1\n c0.1,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.3,0.2,0.4,0.4c0.3,0.2,0.5,0.5,0.8,0.7s0.5,0.5,0.8,0.7c0.2,0.3,0.5,0.5,0.7,0.8\n c1,1,1.9,2.1,2.7,3.1c1.6,2.1,2.9,4.2,3.9,6.2c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.1,0.1,0.2,0.2,0.4c0.1,0.2,0.2,0.5,0.4,0.7\n c0.1,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.2,0.5,0.3,0.7c0.4,0.9,0.7,1.8,1,2.7c0.5,1.4,0.8,2.6,1.1,3.6c0.1,0.4,0.5,0.7,0.9,0.7\n c0.5,0,0.8-0.4,0.8-0.9C103.6,52.7,103.6,51.4,103.5,49.9z\"/\u003e\n\u003c/svg\u003e\n" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/model.json b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/model.json new file mode 100644 index 00000000000..76862352b70 --- /dev/null +++ b/server/meshmodel/mimir-distributed/5.5.0-weekly.306/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Mimir", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#F2C144", + "secondaryColor": "#F05A28", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#F2C144\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#F1A03B\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#F17A31\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#F0632A\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#F05A28\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 65 46\" fill=\"none\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.96413 46H17.3454L23.9184 33.474L19.3691 24.8089L7.96413 46ZM58.9888 24.4552L53.8592 34.2255L59.8667 45.8563L65 36.0455L58.9888 24.4552ZM57.4302 21.4637L46.4791 0.375781L41.0779 9.82925L52.2931 31.2451L57.4302 21.4637ZM40.3712 34.3582L46.4791 45.9926H56.8945L45.5715 24.4294L40.3712 34.3582ZM17.8141 21.8321L12.7069 12.0545L6.18603 24.4994L11.1966 34.1224L17.8141 21.8321ZM4.66094 27.4615L0 36.5944L5.12964 45.8379L9.67521 37.1102L4.66094 27.4615ZM39.3445 12.6402L33.9135 22.1563L38.8163 31.3998L44.024 21.4711L39.3445 12.6402ZM18.8594 0L14.1725 9.04821L32.3995 43.6385L37.2614 34.3803L28.0511 16.8401L18.8594 0Z\" fill=\"url(#paint0_linear_20727_1782)\"\u003e\u003c/path\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003clinearGradient xmlns=\"http://www.w3.org/2000/svg\" id=\"paint0_linear_20727_1782\" x1=\"32.5111\" y1=\"0.729457\" x2=\"32.5111\" y2=\"61.746\" gradientUnits=\"userSpaceOnUse\"\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.24\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.57\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"0.84\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003cstop xmlns=\"http://www.w3.org/2000/svg\" offset=\"1\" stop-color=\"#ffffff\"\u003e\u003c/stop\u003e\n\u003c/linearGradient\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e" + }, + "model": { + "version": "5.5.0-weekly.306" + }, + "name": "mimir-distributed", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Observability and Analysis", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/CatalogSource.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/CatalogSource.json new file mode 100644 index 00000000000..e23e5c96839 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/CatalogSource.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "CatalogSource", + "schema": "{\n \"description\": \"CatalogSource is a repository of CSVs, CRDs, and operator packages.\",\n \"properties\": {\n \"spec\": {\n \"properties\": {\n \"address\": {\n \"description\": \"Address is a host that OLM can use to connect to a pre-existing registry. Format: \\u003cregistry-host or ip\\u003e:\\u003cport\\u003e Only used when SourceType = SourceTypeGrpc. Ignored when the Image field is set.\",\n \"type\": \"string\"\n },\n \"configMap\": {\n \"description\": \"ConfigMap is the name of the ConfigMap to be used to back a configmap-server registry. Only used when SourceType = SourceTypeConfigmap or SourceTypeInternal.\",\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"description\": \"Metadata\",\n \"type\": \"string\"\n },\n \"grpcPodConfig\": {\n \"description\": \"GrpcPodConfig exposes different overrides for the pod spec of the CatalogSource Pod. Only used when SourceType = SourceTypeGrpc and Image is set.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity is the catalog source's pod's affinity.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"extractContent\": {\n \"description\": \"ExtractContent configures the gRPC catalog Pod to extract catalog metadata from the provided index image and use a well-known version of the `opm` server to expose it. The catalog index image that this CatalogSource is configured to use *must* be using the file-based catalogs in order to utilize this feature.\",\n \"properties\": {\n \"cacheDir\": {\n \"description\": \"CacheDir is the directory storing the pre-calculated API cache.\",\n \"type\": \"string\"\n },\n \"catalogDir\": {\n \"description\": \"CatalogDir is the directory storing the file-based catalog contents.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"cacheDir\",\n \"catalogDir\"\n ],\n \"type\": \"object\"\n },\n \"memoryTarget\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"MemoryTarget configures the $GOMEMLIMIT value for the gRPC catalog Pod. This is a soft memory limit for the server, which the runtime will attempt to meet but makes no guarantees that it will do so. If this value is set, the Pod will have the following modifications made to the container running the server: - the $GOMEMLIMIT environment variable will be set to this value in bytes - the memory request will be set to this value \\n This field should be set if it's desired to reduce the footprint of a catalog server as much as possible, or if a catalog being served is very large and needs more than the default allocation. If your index image has a file- system cache, determine a good approximation for this value by doubling the size of the package cache at /tmp/cache/cache/packages.json in the index image. \\n This field is best-effort; if unset, no default will be used and no Pod memory limit or $GOMEMLIMIT value will be set.\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node.\",\n \"type\": \"object\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default.\",\n \"type\": \"string\"\n },\n \"securityContextConfig\": {\n \"default\": \"legacy\",\n \"description\": \"SecurityContextConfig can be one of `legacy` or `restricted`. The CatalogSource's pod is either injected with the right pod.spec.securityContext and pod.spec.container[*].securityContext values to allow the pod to run in Pod Security Admission (PSA) `restricted` mode, or doesn't set these values at all, in which case the pod can only be run in PSA `baseline` or `privileged` namespaces. Currently if the SecurityContextConfig is unspecified, the default value of `legacy` is used. Specifying a value other than `legacy` or `restricted` result in a validation error. When using older catalog images, which could not be run in `restricted` mode, the SecurityContextConfig should be set to `legacy`. \\n In a future version will the default will be set to `restricted`, catalog maintainers should rebuild their catalogs with a version of opm that supports running catalogSource pods in `restricted` mode to prepare for these changes. \\n More information about PSA can be found here: https://kubernetes.io/docs/concepts/security/pod-security-admission/'\",\n \"enum\": [\n \"legacy\",\n \"restricted\"\n ],\n \"type\": \"string\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are the catalog source's pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"icon\": {\n \"properties\": {\n \"base64data\": {\n \"type\": \"string\"\n },\n \"mediatype\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"base64data\",\n \"mediatype\"\n ],\n \"type\": \"object\"\n },\n \"image\": {\n \"description\": \"Image is an operator-registry container image to instantiate a registry-server with. Only used when SourceType = SourceTypeGrpc. If present, the address field is ignored.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"Priority field assigns a weight to the catalog source to prioritize them so that it can be consumed by the dependency resolver. Usage: Higher weight indicates that this catalog source is preferred over lower weighted catalog sources during dependency resolution. The range of the priority value can go from positive to negative in the range of int32. The default value to a catalog source with unassigned priority would be 0. The catalog source with the same priority values will be ranked lexicographically based on its name.\",\n \"type\": \"integer\"\n },\n \"publisher\": {\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets represent set of secrets that can be used to access the contents of the catalog. It is best to keep this list small, since each will need to be tried for every catalog entry.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sourceType\": {\n \"description\": \"SourceType is the type of source\",\n \"type\": \"string\"\n },\n \"updateStrategy\": {\n \"description\": \"UpdateStrategy defines how updated catalog source images can be discovered Consists of an interval that defines polling duration and an embedded strategy type\",\n \"properties\": {\n \"registryPoll\": {\n \"properties\": {\n \"interval\": {\n \"description\": \"Interval is used to determine the time interval between checks of the latest catalog source version. The catalog operator polls to see if a new version of the catalog source is available. If available, the latest image is pulled and gRPC traffic is directed to the latest catalog source.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"sourceType\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\",\n \"spec\"\n ],\n \"title\": \"Catalog Source\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Catalog Source", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/ClusterServiceVersion.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/ClusterServiceVersion.json new file mode 100644 index 00000000000..485b99c7a76 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/ClusterServiceVersion.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "ClusterServiceVersion", + "schema": "{\n \"description\": \"ClusterServiceVersion is a Custom Resource of type `ClusterServiceVersionSpec`.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"ClusterServiceVersionSpec declarations tell OLM how to install an operator that can manage apps for a given version.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.\",\n \"type\": \"object\"\n },\n \"apiservicedefinitions\": {\n \"description\": \"APIServiceDefinitions declares all of the extension apis managed or required by an operator being ran by ClusterServiceVersion.\",\n \"properties\": {\n \"owned\": {\n \"items\": {\n \"description\": \"APIServiceDescription provides details to OLM about apis provided via aggregation\",\n \"properties\": {\n \"actionDescriptors\": {\n \"items\": {\n \"description\": \"ActionDescriptor describes a declarative action that can be performed on a custom resource instance\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"deploymentName\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"items\": {\n \"description\": \"APIResourceReference is a reference to a Kubernetes resource type that the referrer utilizes.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource type.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Plural name of the referenced resource type (CustomResourceDefinition.Spec.Names[].Plural). Empty string if the referenced resource type is not a custom resource.\",\n \"type\": \"string\"\n },\n \"version\": {\n \"description\": \"API Version of the referenced resource type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"specDescriptors\": {\n \"items\": {\n \"description\": \"SpecDescriptor describes a field in a spec block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"statusDescriptors\": {\n \"items\": {\n \"description\": \"StatusDescriptor describes a field in a status block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"required\": {\n \"items\": {\n \"description\": \"APIServiceDescription provides details to OLM about apis provided via aggregation\",\n \"properties\": {\n \"actionDescriptors\": {\n \"items\": {\n \"description\": \"ActionDescriptor describes a declarative action that can be performed on a custom resource instance\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"containerPort\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"deploymentName\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"items\": {\n \"description\": \"APIResourceReference is a reference to a Kubernetes resource type that the referrer utilizes.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource type.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Plural name of the referenced resource type (CustomResourceDefinition.Spec.Names[].Plural). Empty string if the referenced resource type is not a custom resource.\",\n \"type\": \"string\"\n },\n \"version\": {\n \"description\": \"API Version of the referenced resource type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"specDescriptors\": {\n \"items\": {\n \"description\": \"SpecDescriptor describes a field in a spec block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"statusDescriptors\": {\n \"items\": {\n \"description\": \"StatusDescriptor describes a field in a status block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"cleanup\": {\n \"description\": \"Cleanup specifies the cleanup behaviour when the CSV gets deleted\",\n \"properties\": {\n \"enabled\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"enabled\"\n ],\n \"type\": \"object\"\n },\n \"customresourcedefinitions\": {\n \"description\": \"CustomResourceDefinitions declares all of the CRDs managed or required by an operator being ran by ClusterServiceVersion. \\n If the CRD is present in the Owned list, it is implicitly required.\",\n \"properties\": {\n \"owned\": {\n \"items\": {\n \"description\": \"CRDDescription provides details to OLM about the CRDs\",\n \"properties\": {\n \"actionDescriptors\": {\n \"items\": {\n \"description\": \"ActionDescriptor describes a declarative action that can be performed on a custom resource instance\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"items\": {\n \"description\": \"APIResourceReference is a reference to a Kubernetes resource type that the referrer utilizes.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource type.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Plural name of the referenced resource type (CustomResourceDefinition.Spec.Names[].Plural). Empty string if the referenced resource type is not a custom resource.\",\n \"type\": \"string\"\n },\n \"version\": {\n \"description\": \"API Version of the referenced resource type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"specDescriptors\": {\n \"items\": {\n \"description\": \"SpecDescriptor describes a field in a spec block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"statusDescriptors\": {\n \"items\": {\n \"description\": \"StatusDescriptor describes a field in a status block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"required\": {\n \"items\": {\n \"description\": \"CRDDescription provides details to OLM about the CRDs\",\n \"properties\": {\n \"actionDescriptors\": {\n \"items\": {\n \"description\": \"ActionDescriptor describes a declarative action that can be performed on a custom resource instance\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"resources\": {\n \"items\": {\n \"description\": \"APIResourceReference is a reference to a Kubernetes resource type that the referrer utilizes.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind of the referenced resource type.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Plural name of the referenced resource type (CustomResourceDefinition.Spec.Names[].Plural). Empty string if the referenced resource type is not a custom resource.\",\n \"type\": \"string\"\n },\n \"version\": {\n \"description\": \"API Version of the referenced resource type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"specDescriptors\": {\n \"items\": {\n \"description\": \"SpecDescriptor describes a field in a spec block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"statusDescriptors\": {\n \"items\": {\n \"description\": \"StatusDescriptor describes a field in a status block of a CRD so that OLM can consume it\",\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n },\n \"displayName\": {\n \"type\": \"string\"\n },\n \"path\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"RawMessage is a raw encoded JSON value. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.\",\n \"format\": \"byte\",\n \"type\": \"string\"\n },\n \"x-descriptors\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"description\": {\n \"description\": \"Description of the operator. Can include the features, limitations or use-cases of the operator.\",\n \"type\": \"string\"\n },\n \"displayName\": {\n \"description\": \"The name of the operator in display format.\",\n \"type\": \"string\"\n },\n \"icon\": {\n \"description\": \"The icon for this operator.\",\n \"items\": {\n \"properties\": {\n \"base64data\": {\n \"type\": \"string\"\n },\n \"mediatype\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"base64data\",\n \"mediatype\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"install\": {\n \"description\": \"NamedInstallStrategy represents the block of an ClusterServiceVersion resource where the install strategy is specified.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"StrategyDetailsDeployment represents the parsed details of a Deployment InstallStrategy.\",\n \"properties\": {\n \"clusterPermissions\": {\n \"items\": {\n \"description\": \"StrategyDeploymentPermissions describe the rbac rules and service account needed by the install strategy\",\n \"properties\": {\n \"rules\": {\n \"items\": {\n \"description\": \"PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.\",\n \"properties\": {\n \"apiGroups\": {\n \"description\": \"APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \\\"\\\" represents the core API group and \\\"*\\\" represents all API groups.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"nonResourceURLs\": {\n \"description\": \"NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \\\"pods\\\" or \\\"secrets\\\") or non-resource URL paths (such as \\\"/api\\\"), but not both.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resourceNames\": {\n \"description\": \"ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is a list of resources this rule applies to. '*' represents all resources.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"verbs\": {\n \"description\": \"Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"verbs\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceAccountName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"rules\",\n \"serviceAccountName\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"deployments\": {\n \"items\": {\n \"description\": \"StrategyDeploymentSpec contains the name, spec and labels for the deployment ALM should create\",\n \"properties\": {\n \"label\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Set is a map of label:value. It implements Labels.\",\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"DeploymentSpec is the specification of the desired behavior of the Deployment.\",\n \"properties\": {\n \"minReadySeconds\": {\n \"description\": \"Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"paused\": {\n \"description\": \"Indicates that the deployment is paused.\",\n \"type\": \"boolean\"\n },\n \"progressDeadlineSeconds\": {\n \"description\": \"The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"replicas\": {\n \"description\": \"Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"revisionHistoryLimit\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"description\": \"Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"strategy\": {\n \"description\": \"The deployment strategy to use to replace existing pods with new ones.\",\n \"properties\": {\n \"rollingUpdate\": {\n \"description\": \"Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate. --- TODO: Update this to follow our convention for oneOf, whatever we decide it to be.\",\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"type\": {\n \"description\": \"Type of deployment. Can be \\\"Recreate\\\" or \\\"RollingUpdate\\\". Default is RollingUpdate.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"template\": {\n \"description\": \"Template describes the pods that will be created. The only allowed template.spec.restartPolicy value is \\\"Always\\\".\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"activeDeadlineSeconds\": {\n \"description\": \"Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"affinity\": {\n \"description\": \"If specified, the pod's scheduling constraints\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"automountServiceAccountToken\": {\n \"description\": \"AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.\",\n \"type\": \"boolean\"\n },\n \"containers\": {\n \"description\": \"List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \\\"Always\\\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \\\"Always\\\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \\\"sidecar\\\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.\",\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"Set DNS policy for the pod. Defaults to \\\"ClusterFirst\\\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.\",\n \"type\": \"string\"\n },\n \"enableServiceLinks\": {\n \"description\": \"EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.\",\n \"type\": \"boolean\"\n },\n \"ephemeralContainers\": {\n \"description\": \"List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.\",\n \"items\": {\n \"description\": \"An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation. \\n To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name. More info: https://kubernetes.io/docs/concepts/containers/images\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Lifecycle is not allowed for ephemeral containers.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"Ports are not allowed for ephemeral containers.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for the container to manage the restart behavior of each container within a pod. This may only be set for init containers. You cannot set this field on ephemeral containers.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"Probes are not allowed for ephemeral containers.\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"targetContainerName\": {\n \"description\": \"If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. \\n The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.\",\n \"type\": \"string\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostIPC\": {\n \"description\": \"Use the host's ipc namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostNetwork\": {\n \"description\": \"Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostPID\": {\n \"description\": \"Use the host's pid namespace. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"hostUsers\": {\n \"description\": \"Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.\",\n \"type\": \"boolean\"\n },\n \"hostname\": {\n \"description\": \"Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"properties\": {\n \"args\": {\n \"description\": \"Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"command\": {\n \"description\": \"Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"env\": {\n \"description\": \"List of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.\",\n \"type\": \"string\"\n },\n \"imagePullPolicy\": {\n \"description\": \"Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images\",\n \"type\": \"string\"\n },\n \"lifecycle\": {\n \"description\": \"Actions that the management system should take in response to container lifecycle events. Cannot be updated.\",\n \"properties\": {\n \"postStart\": {\n \"description\": \"PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"preStop\": {\n \"description\": \"PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"tcpSocket\": {\n \"description\": \"Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.\",\n \"type\": \"string\"\n },\n \"ports\": {\n \"description\": \"List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \\\"0.0.0.0\\\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.\",\n \"items\": {\n \"description\": \"ContainerPort represents a network port in a single container.\",\n \"properties\": {\n \"containerPort\": {\n \"description\": \"Number of port to expose on the pod's IP address. This must be a valid port number, 0 \\u003c x \\u003c 65536.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"hostIP\": {\n \"description\": \"What host IP to bind the external port to.\",\n \"type\": \"string\"\n },\n \"hostPort\": {\n \"description\": \"Number of port to expose on the host. If specified, this must be a valid port number, 0 \\u003c x \\u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.\",\n \"type\": \"string\"\n },\n \"protocol\": {\n \"default\": \"TCP\",\n \"description\": \"Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \\\"TCP\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"containerPort\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"containerPort\",\n \"protocol\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"readinessProbe\": {\n \"description\": \"Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"resizePolicy\": {\n \"description\": \"Resources resize policy for the container.\",\n \"items\": {\n \"description\": \"ContainerResizePolicy represents resource resize policy for the container.\",\n \"properties\": {\n \"resourceName\": {\n \"description\": \"Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.\",\n \"type\": \"string\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resourceName\",\n \"restartPolicy\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restartPolicy\": {\n \"description\": \"RestartPolicy defines the restart behavior of individual containers in a pod. This field may only be set for init containers, and the only allowed value is \\\"Always\\\". For non-init containers or when this field is not specified, the restart behavior is defined by the Pod's restart policy and the container type. Setting the RestartPolicy as \\\"Always\\\" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy \\\"Always\\\" will be shut down. This lifecycle differs from normal init containers and is often referred to as a \\\"sidecar\\\" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.\",\n \"type\": \"string\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\",\n \"properties\": {\n \"allowPrivilegeEscalation\": {\n \"description\": \"AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"capabilities\": {\n \"description\": \"The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"add\": {\n \"description\": \"Added capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"drop\": {\n \"description\": \"Removed capabilities\",\n \"items\": {\n \"description\": \"Capability represent POSIX capabilities type\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"privileged\": {\n \"description\": \"Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"procMount\": {\n \"description\": \"procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"readOnlyRootFilesystem\": {\n \"description\": \"Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"boolean\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by this container. If seccomp options are provided at both the pod \\u0026 container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"properties\": {\n \"exec\": {\n \"description\": \"Exec specifies the action to take.\",\n \"properties\": {\n \"command\": {\n \"description\": \"Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"failureThreshold\": {\n \"description\": \"Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"grpc\": {\n \"description\": \"GRPC specifies an action involving a GRPC port.\",\n \"properties\": {\n \"port\": {\n \"description\": \"Port number of the gRPC service. Number must be in the range 1 to 65535.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"service\": {\n \"description\": \"Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). \\n If this is not specified, the default behavior is defined by gRPC.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"httpGet\": {\n \"description\": \"HTTPGet specifies the http request to perform.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Host name to connect to, defaults to the pod IP. You probably want to set \\\"Host\\\" in httpHeaders instead.\",\n \"type\": \"string\"\n },\n \"httpHeaders\": {\n \"description\": \"Custom headers to set in the request. HTTP allows repeated headers.\",\n \"items\": {\n \"description\": \"HTTPHeader describes a custom header to be used in HTTP probes\",\n \"properties\": {\n \"name\": {\n \"description\": \"The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"The header field value\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"Path to access on the HTTP server.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"scheme\": {\n \"description\": \"Scheme to use for connecting to the host. Defaults to HTTP.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"initialDelaySeconds\": {\n \"description\": \"Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"periodSeconds\": {\n \"description\": \"How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"successThreshold\": {\n \"description\": \"Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"tcpSocket\": {\n \"description\": \"TCPSocket specifies an action involving a TCP port.\",\n \"properties\": {\n \"host\": {\n \"description\": \"Optional: Host name to connect to, defaults to the pod IP.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"required\": [\n \"port\"\n ],\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"timeoutSeconds\": {\n \"description\": \"Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"stdin\": {\n \"description\": \"Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.\",\n \"type\": \"boolean\"\n },\n \"stdinOnce\": {\n \"description\": \"Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false\",\n \"type\": \"boolean\"\n },\n \"terminationMessagePath\": {\n \"description\": \"Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"terminationMessagePolicy\": {\n \"description\": \"Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.\",\n \"type\": \"string\"\n },\n \"tty\": {\n \"description\": \"Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.\",\n \"type\": \"boolean\"\n },\n \"volumeDevices\": {\n \"description\": \"volumeDevices is the list of block devices to be used by the container.\",\n \"items\": {\n \"description\": \"volumeDevice describes a mapping of a raw block device within a container.\",\n \"properties\": {\n \"devicePath\": {\n \"description\": \"devicePath is the path inside of the container that the device will be mapped to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"name must match the name of a persistentVolumeClaim in the pod\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"devicePath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"Pod volumes to mount into the container's filesystem. Cannot be updated.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"workingDir\": {\n \"description\": \"Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeName\": {\n \"description\": \"NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.\",\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"os\": {\n \"description\": \"Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set. \\n If the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions \\n If the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"overhead\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md\",\n \"type\": \"object\"\n },\n \"preemptionPolicy\": {\n \"description\": \"PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"priorityClassName\": {\n \"description\": \"If specified, indicates the pod's priority. \\\"system-node-critical\\\" and \\\"system-cluster-critical\\\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \\\"True\\\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"resourceClaims\": {\n \"description\": \"ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable.\",\n \"items\": {\n \"description\": \"PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.\",\n \"type\": \"string\"\n },\n \"source\": {\n \"description\": \"Source describes where to find the ResourceClaim.\",\n \"properties\": {\n \"resourceClaimName\": {\n \"description\": \"ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.\",\n \"type\": \"string\"\n },\n \"resourceClaimTemplateName\": {\n \"description\": \"ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod. \\n The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. \\n This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"restartPolicy\": {\n \"description\": \"Restart policy for all containers within the pod. One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \\\"legacy\\\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.\",\n \"type\": \"string\"\n },\n \"schedulingGates\": {\n \"description\": \"SchedulingGates is an opaque list of values that if specified will block scheduling the pod. If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the pod. \\n SchedulingGates can only be set at pod creation time, and be removed only afterwards. \\n This is a beta feature enabled by the PodSchedulingReadiness feature gate.\",\n \"items\": {\n \"description\": \"PodSchedulingGate is associated to a Pod to guard its scheduling.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the scheduling gate. Each scheduling gate must have a unique name field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.\",\n \"properties\": {\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \\n 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- \\n If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"fsGroupChangePolicy\": {\n \"description\": \"fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \\\"OnRootMismatch\\\" and \\\"Always\\\". If not specified, \\\"Always\\\" is used. Note that this field cannot be set when spec.os.name is windows.\",\n \"type\": \"string\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsNonRoot\": {\n \"description\": \"Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"boolean\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seLinuxOptions\": {\n \"description\": \"The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"level\": {\n \"description\": \"Level is SELinux level label that applies to the container.\",\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"Role is a SELinux role label that applies to the container.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type is a SELinux type label that applies to the container.\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"User is a SELinux user label that applies to the container.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"seccompProfile\": {\n \"description\": \"The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.\",\n \"properties\": {\n \"localhostProfile\": {\n \"description\": \"localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must be set if type is \\\"Localhost\\\". Must NOT be set for any other type.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type indicates which kind of seccomp profile will be applied. Valid options are: \\n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"supplementalGroups\": {\n \"description\": \"A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"sysctls\": {\n \"description\": \"Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.\",\n \"items\": {\n \"description\": \"Sysctl defines a kernel parameter to be set\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of a property to set\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Value of a property to set\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"windowsOptions\": {\n \"description\": \"The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux.\",\n \"properties\": {\n \"gmsaCredentialSpec\": {\n \"description\": \"GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.\",\n \"type\": \"string\"\n },\n \"gmsaCredentialSpecName\": {\n \"description\": \"GMSACredentialSpecName is the name of the GMSA credential spec to use.\",\n \"type\": \"string\"\n },\n \"hostProcess\": {\n \"description\": \"HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.\",\n \"type\": \"boolean\"\n },\n \"runAsUserName\": {\n \"description\": \"The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccount\": {\n \"description\": \"DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/\",\n \"type\": \"string\"\n },\n \"setHostnameAsFQDN\": {\n \"description\": \"If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\\\\\\\Tcpip\\\\\\\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.\",\n \"type\": \"boolean\"\n },\n \"shareProcessNamespace\": {\n \"description\": \"Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.\",\n \"type\": \"boolean\"\n },\n \"subdomain\": {\n \"description\": \"If specified, the fully qualified Pod hostname will be \\\"\\u003chostname\\u003e.\\u003csubdomain\\u003e.\\u003cpod namespace\\u003e.svc.\\u003ccluster domain\\u003e\\\". If not specified, the pod will not have a domainname at all.\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"matchLabelKeys\": {\n \"description\": \"MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector. \\n This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"maxSkew\": {\n \"description\": \"MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minDomains\": {\n \"description\": \"MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \\\"global minimum\\\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule. \\n For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \\\"global minimum\\\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew. \\n This is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeAffinityPolicy\": {\n \"description\": \"NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. \\n If this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"nodeTaintsPolicy\": {\n \"description\": \"NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included. \\n If this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.\",\n \"type\": \"string\"\n },\n \"topologyKey\": {\n \"description\": \"TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each \\u003ckey, value\\u003e as a \\\"bucket\\\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \\\"kubernetes.io/hostname\\\", each Node is a domain of that topology. And, if TopologyKey is \\\"topology.kubernetes.io/zone\\\", each zone is a domain of that topology. It's a required field.\",\n \"type\": \"string\"\n },\n \"whenUnsatisfiable\": {\n \"description\": \"WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered \\\"Unsatisfiable\\\" for an incoming pod if and only if every possible node assignment for that pod would violate \\\"MaxSkew\\\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"volumes\": {\n \"description\": \"List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \\n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \\n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \\n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \\n A pod can use both types of ephemeral volumes and persistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where `\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \\n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \\n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \\n Required, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While dataSource ignores disallowed values (dropping them), dataSourceRef preserves all values, and generates an error if a disallowed value is specified. * While dataSource only allows local objects, dataSourceRef allows objects in any namespaces. (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker should be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts. Default false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the token into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to Default is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to Defaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"containers\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"selector\",\n \"template\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\",\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"permissions\": {\n \"items\": {\n \"description\": \"StrategyDeploymentPermissions describe the rbac rules and service account needed by the install strategy\",\n \"properties\": {\n \"rules\": {\n \"items\": {\n \"description\": \"PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.\",\n \"properties\": {\n \"apiGroups\": {\n \"description\": \"APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \\\"\\\" represents the core API group and \\\"*\\\" represents all API groups.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"nonResourceURLs\": {\n \"description\": \"NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \\\"pods\\\" or \\\"secrets\\\") or non-resource URL paths (such as \\\"/api\\\"), but not both.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resourceNames\": {\n \"description\": \"ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"resources\": {\n \"description\": \"Resources is a list of resources this rule applies to. '*' represents all resources.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"verbs\": {\n \"description\": \"Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"verbs\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceAccountName\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"rules\",\n \"serviceAccountName\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"deployments\"\n ],\n \"type\": \"object\"\n },\n \"strategy\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"strategy\"\n ],\n \"type\": \"object\"\n },\n \"installModes\": {\n \"description\": \"InstallModes specify supported installation types\",\n \"items\": {\n \"description\": \"InstallMode associates an InstallModeType with a flag representing if the CSV supports it\",\n \"properties\": {\n \"supported\": {\n \"type\": \"boolean\"\n },\n \"type\": {\n \"description\": \"InstallModeType is a supported type of install mode for CSV installation\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"supported\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"keywords\": {\n \"description\": \"A list of keywords describing the operator.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Map of string keys and values that can be used to organize and categorize (scope and select) objects.\",\n \"type\": \"object\"\n },\n \"links\": {\n \"description\": \"A list of links related to the operator.\",\n \"items\": {\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"maintainers\": {\n \"description\": \"A list of organizational entities maintaining the operator.\",\n \"items\": {\n \"properties\": {\n \"email\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"maturity\": {\n \"type\": \"string\"\n },\n \"minKubeVersion\": {\n \"type\": \"string\"\n },\n \"nativeAPIs\": {\n \"items\": {\n \"description\": \"GroupVersionKind unambiguously identifies a kind. It doesn't anonymously include GroupVersion to avoid automatic coercion. It doesn't use a GroupVersion to avoid custom marshalling\",\n \"properties\": {\n \"group\": {\n \"type\": \"string\"\n },\n \"kind\": {\n \"type\": \"string\"\n },\n \"version\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"kind\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"provider\": {\n \"description\": \"The publishing entity behind the operator.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"relatedImages\": {\n \"description\": \"List any related images, or other container images that your Operator might require to perform their functions. This list should also include operand images as well. All image references should be specified by digest (SHA) and not by tag. This field is only used during catalog creation and plays no part in cluster runtime.\",\n \"items\": {\n \"properties\": {\n \"image\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"replaces\": {\n \"description\": \"The name of a CSV this one replaces. Should match the `metadata.Name` field of the old CSV.\",\n \"type\": \"string\"\n },\n \"selector\": {\n \"description\": \"Label selector for related resources.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"skips\": {\n \"description\": \"The name(s) of one or more CSV(s) that should be skipped in the upgrade graph. Should match the `metadata.Name` field of the CSV that should be skipped. This field is only used during catalog creation and plays no part in cluster runtime.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"version\": {\n \"type\": \"string\"\n },\n \"webhookdefinitions\": {\n \"items\": {\n \"description\": \"WebhookDescription provides details to OLM about required webhooks\",\n \"properties\": {\n \"admissionReviewVersions\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containerPort\": {\n \"default\": 443,\n \"format\": \"int32\",\n \"maximum\": 65535,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"conversionCRDs\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"deploymentName\": {\n \"type\": \"string\"\n },\n \"failurePolicy\": {\n \"description\": \"FailurePolicyType specifies a failure policy that defines how unrecognized errors from the admission endpoint are handled.\",\n \"type\": \"string\"\n },\n \"generateName\": {\n \"type\": \"string\"\n },\n \"matchPolicy\": {\n \"description\": \"MatchPolicyType specifies the type of match policy.\",\n \"type\": \"string\"\n },\n \"objectSelector\": {\n \"description\": \"A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"reinvocationPolicy\": {\n \"description\": \"ReinvocationPolicyType specifies what type of policy the admission hook uses.\",\n \"type\": \"string\"\n },\n \"rules\": {\n \"items\": {\n \"description\": \"RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.\",\n \"properties\": {\n \"apiGroups\": {\n \"description\": \"APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"apiVersions\": {\n \"description\": \"APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"operations\": {\n \"description\": \"Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added. If '*' is present, the length of the slice must be one. Required.\",\n \"items\": {\n \"description\": \"OperationType specifies an operation for a request.\",\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"resources\": {\n \"description\": \"Resources is a list of resources this rule applies to. \\n For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. \\n If wildcard is present, the validation rule will ensure resources do not overlap with each other. \\n Depending on the enclosing object, subresources might not be allowed. Required.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"scope\": {\n \"description\": \"scope specifies the scope of this rule. Valid values are \\\"Cluster\\\", \\\"Namespaced\\\", and \\\"*\\\" \\\"Cluster\\\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \\\"Namespaced\\\" means that only namespaced resources will match this rule. \\\"*\\\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \\\"*\\\".\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sideEffects\": {\n \"description\": \"SideEffectClass specifies the types of side effects a webhook may have.\",\n \"type\": \"string\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"x-kubernetes-int-or-string\": true\n },\n \"timeoutSeconds\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": {\n \"description\": \"WebhookAdmissionType is the type of admission webhooks supported by OLM\",\n \"enum\": [\n \"ValidatingAdmissionWebhook\",\n \"MutatingAdmissionWebhook\",\n \"ConversionWebhook\"\n ],\n \"type\": \"string\"\n },\n \"webhookPath\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"admissionReviewVersions\",\n \"generateName\",\n \"sideEffects\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"displayName\",\n \"install\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\",\n \"spec\"\n ],\n \"title\": \"Cluster Service Version\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Cluster Service Version", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/InstallPlan.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/InstallPlan.json new file mode 100644 index 00000000000..b702862ca58 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/InstallPlan.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "InstallPlan", + "schema": "{\n \"description\": \"InstallPlan defines the installation of a set of operators.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"InstallPlanSpec defines a set of Application resources to be installed\",\n \"properties\": {\n \"approval\": {\n \"description\": \"Approval is the user approval policy for an InstallPlan. It must be one of \\\"Automatic\\\" or \\\"Manual\\\".\",\n \"type\": \"string\"\n },\n \"approved\": {\n \"type\": \"boolean\"\n },\n \"clusterServiceVersionNames\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"generation\": {\n \"type\": \"integer\"\n },\n \"source\": {\n \"type\": \"string\"\n },\n \"sourceNamespace\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"approval\",\n \"approved\",\n \"clusterServiceVersionNames\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\",\n \"spec\"\n ],\n \"title\": \"Install Plan\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Install Plan", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OLMConfig.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OLMConfig.json new file mode 100644 index 00000000000..eb4ebc6683b --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OLMConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OLMConfig", + "schema": "{\n \"description\": \"OLMConfig is a resource responsible for configuring OLM.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OLMConfigSpec is the spec for an OLMConfig resource.\",\n \"properties\": {\n \"features\": {\n \"description\": \"Features contains the list of configurable OLM features.\",\n \"properties\": {\n \"disableCopiedCSVs\": {\n \"description\": \"DisableCopiedCSVs is used to disable OLM's \\\"Copied CSV\\\" feature for operators installed at the cluster scope, where a cluster scoped operator is one that has been installed in an OperatorGroup that targets all namespaces. When reenabled, OLM will recreate the \\\"Copied CSVs\\\" for each cluster scoped operator.\",\n \"type\": \"boolean\"\n },\n \"packageServerSyncInterval\": {\n \"description\": \"PackageServerSyncInterval is used to define the sync interval for packagerserver pods. Packageserver pods periodically check the status of CatalogSources; this specifies the period using duration format (e.g. \\\"60m\\\"). For this parameter, only hours (\\\"h\\\"), minutes (\\\"m\\\"), and seconds (\\\"s\\\") may be specified. When not specified, the period defaults to the value specified within the packageserver.\",\n \"pattern\": \"^([0-9]+(\\\\.[0-9]+)?(s|m|h))+$\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\"\n ],\n \"title\": \"OLM Config\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "OLM Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Operator.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Operator.json new file mode 100644 index 00000000000..3c0cd2c9c9b --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Operator.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Operator", + "schema": "{\n \"description\": \"Operator represents a cluster operator.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OperatorSpec defines the desired state of Operator\",\n \"type\": \"object\"\n }\n },\n \"title\": \"Operator\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Operator", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": false, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorCondition.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorCondition.json new file mode 100644 index 00000000000..c6282c1667d --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorCondition.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OperatorCondition", + "schema": "{\n \"description\": \"OperatorCondition is a Custom Resource of type `OperatorCondition` which is used to convey information to OLM about the state of an operator.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"OperatorConditionSpec allows a cluster admin to convey information about the state of an operator to OLM, potentially overriding state reported by the operator.\",\n \"properties\": {\n \"deployments\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"overrides\": {\n \"items\": {\n \"description\": \"Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \\n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \\\"Available\\\", \\\"Progressing\\\", and \\\"Degraded\\\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\\\"conditions,omitempty\\\" patchStrategy:\\\"merge\\\" patchMergeKey:\\\"type\\\" protobuf:\\\"bytes,1,rep,name=conditions\\\"` \\n // other fields }\",\n \"properties\": {\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is a human readable message indicating details about the transition. This may be an empty string.\",\n \"maxLength\": 32768,\n \"type\": \"string\"\n },\n \"observedGeneration\": {\n \"description\": \"observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.\",\n \"format\": \"int64\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"reason\": {\n \"description\": \"reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.\",\n \"maxLength\": 1024,\n \"minLength\": 1,\n \"pattern\": \"^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"status of the condition, one of True, False, Unknown.\",\n \"enum\": [\n \"True\",\n \"False\",\n \"Unknown\"\n ],\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)\",\n \"maxLength\": 316,\n \"pattern\": \"^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"message\",\n \"reason\",\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceAccounts\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\"\n ],\n \"title\": \"Operator Condition\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Operator Condition", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorGroup.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorGroup.json new file mode 100644 index 00000000000..f9b62e86a08 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/OperatorGroup.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "OperatorGroup", + "schema": "{\n \"description\": \"OperatorGroup is the unit of multitenancy for OLM managed operators. It constrains the installation of operators in its namespace to a specified set of target namespaces.\",\n \"properties\": {\n \"spec\": {\n \"default\": {\n \"upgradeStrategy\": \"Default\"\n },\n \"description\": \"OperatorGroupSpec is the spec for an OperatorGroup resource.\",\n \"properties\": {\n \"selector\": {\n \"description\": \"Selector selects the OperatorGroup's target namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the admin specified service account which will be used to deploy operator(s) in this operator group.\",\n \"type\": \"string\"\n },\n \"staticProvidedAPIs\": {\n \"description\": \"Static tells OLM not to update the OperatorGroup's providedAPIs annotation\",\n \"type\": \"boolean\"\n },\n \"targetNamespaces\": {\n \"description\": \"TargetNamespaces is an explicit set of namespaces to target. If it is set, Selector is ignored.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"set\"\n },\n \"upgradeStrategy\": {\n \"default\": \"Default\",\n \"description\": \"UpgradeStrategy defines the upgrade strategy for operators in the namespace. There are currently two supported upgrade strategies: \\n Default: OLM will only allow clusterServiceVersions to move to the replacing phase from the succeeded phase. This effectively means that OLM will not allow operators to move to the next version if an installation or upgrade has failed. \\n TechPreviewUnsafeFailForward: OLM will allow clusterServiceVersions to move to the replacing phase from the succeeded phase or from the failed phase. Additionally, OLM will generate new installPlans when a subscription references a failed installPlan and the catalog has been updated with a new upgrade for the existing set of operators. \\n WARNING: The TechPreviewUnsafeFailForward upgrade strategy is unsafe and may result in unexpected behavior or unrecoverable data loss unless you have deep understanding of the set of operators being managed in the namespace.\",\n \"enum\": [\n \"Default\",\n \"TechPreviewUnsafeFailForward\"\n ],\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\"\n ],\n \"title\": \"Operator Group\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1" + }, + "configuration": null, + "description": "", + "displayName": "Operator Group", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Subscription.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Subscription.json new file mode 100644 index 00000000000..e3777b0cae1 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Subscription.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Subscription", + "schema": "{\n \"description\": \"Subscription keeps operators up to date by tracking changes to Catalogs.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"SubscriptionSpec defines an Application that can be installed\",\n \"properties\": {\n \"channel\": {\n \"type\": \"string\"\n },\n \"config\": {\n \"description\": \"SubscriptionConfig contains configuration specified for a subscription.\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"If specified, overrides the pod's scheduling constraints. nil sub-attributes will *not* override the original values in the pod.spec for those sub-attributes. Use empty object ({}) to erase original sub-attribute values.\",\n \"properties\": {\n \"nodeAffinity\": {\n \"description\": \"Describes node affinity scheduling rules for the pod.\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).\",\n \"properties\": {\n \"preference\": {\n \"description\": \"A node selector term, associated with the corresponding weight.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"preference\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.\",\n \"properties\": {\n \"nodeSelectorTerms\": {\n \"description\": \"Required. A list of node selector terms. The terms are ORed.\",\n \"items\": {\n \"description\": \"A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"A list of node selector requirements by node's labels.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchFields\": {\n \"description\": \"A list of node selector requirements by node's fields.\",\n \"items\": {\n \"description\": \"A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"nodeSelectorTerms\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podAffinity\": {\n \"description\": \"Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podAntiAffinity\": {\n \"description\": \"Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).\",\n \"properties\": {\n \"preferredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \\\"weight\\\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.\",\n \"items\": {\n \"description\": \"The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)\",\n \"properties\": {\n \"podAffinityTerm\": {\n \"description\": \"Required. A pod affinity term, associated with the corresponding weight.\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"weight\": {\n \"description\": \"weight associated with matching the corresponding podAffinityTerm, in the range 1-100.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podAffinityTerm\",\n \"weight\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"requiredDuringSchedulingIgnoredDuringExecution\": {\n \"description\": \"If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.\",\n \"items\": {\n \"description\": \"Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \\u003ctopologyKey\\u003e matches that of any node on which a pod of the set of pods is running\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label query over a set of resources, in this case pods.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaceSelector\": {\n \"description\": \"A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \\\"this pod's namespace\\\". An empty selector ({}) matches all namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"namespaces\": {\n \"description\": \"namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \\\"this pod's namespace\\\".\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"topologyKey\": {\n \"description\": \"This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"topologyKey\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with each Deployment, Pod, APIService in the Operator. Typically, annotations may be set by external tools to store and retrieve arbitrary metadata. Use this field to pre-define annotations that OLM should add to each of the Subscription's deployments, pods, and apiservices.\",\n \"type\": \"object\"\n },\n \"env\": {\n \"description\": \"Env is a list of environment variables to set in the container. Cannot be updated.\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"envFrom\": {\n \"description\": \"EnvFrom is a list of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Immutable.\",\n \"items\": {\n \"description\": \"EnvFromSource represents the source of a set of ConfigMaps\",\n \"properties\": {\n \"configMapRef\": {\n \"description\": \"The ConfigMap to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"prefix\": {\n \"description\": \"An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"The Secret to select from\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/\",\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources represents compute resources required by this container. Immutable. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"Selector is the label selector for pods to be configured. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations are the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"List of VolumeMounts to set in the container.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must not contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted. Defaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \\\"\\\" (volume's root). SubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"List of Volumes to set in the podSpec.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"properties\": {\n \"awsElasticBlockStore\": {\n \"description\": \"awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty).\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"azureDisk\": {\n \"description\": \"azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"cachingMode\": {\n \"description\": \"cachingMode is the Host Caching mode: None, Read Only, Read Write.\",\n \"type\": \"string\"\n },\n \"diskName\": {\n \"description\": \"diskName is the Name of the data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"diskURI\": {\n \"description\": \"diskURI is the URI of data disk in the blob storage\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"diskName\",\n \"diskURI\"\n ],\n \"type\": \"object\"\n },\n \"azureFile\": {\n \"description\": \"azureFile represents an Azure File Service mount on the host and bind mount to the pod.\",\n \"properties\": {\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of secret that contains Azure Storage Account Name and Key\",\n \"type\": \"string\"\n },\n \"shareName\": {\n \"description\": \"shareName is the azure share Name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"secretName\",\n \"shareName\"\n ],\n \"type\": \"object\"\n },\n \"cephfs\": {\n \"description\": \"cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"monitors\": {\n \"description\": \"monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"path\": {\n \"description\": \"path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretFile\": {\n \"description\": \"secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"cinder\": {\n \"description\": \"cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeID\": {\n \"description\": \"volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"configMap\": {\n \"description\": \"configMap represents a configMap that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"csi\": {\n \"description\": \"csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType to mount. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.\",\n \"type\": \"string\"\n },\n \"nodePublishSecretRef\": {\n \"description\": \"nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).\",\n \"type\": \"boolean\"\n },\n \"volumeAttributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.\",\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI represents downward API about the pod that should populate this volume\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"Items is a list of downward API volume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"emptyDir\": {\n \"description\": \"emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory. The default is \\\"\\\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ephemeral\": {\n \"description\": \"ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed. \\n Use this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity tracking are needed, c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through a PersistentVolumeClaim (see EphemeralVolumeSource for more information on the connection between this volume type and PersistentVolumeClaim). \\n Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod. \\n Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information. \\n A pod can use both types of ephemeral volumes and persistent volumes at the same time.\",\n \"properties\": {\n \"volumeClaimTemplate\": {\n \"description\": \"Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `\\u003cpod name\\u003e-\\u003cvolume name\\u003e` where `\\u003cvolume name\\u003e` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). \\n An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. \\n This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. \\n Required, must not be nil.\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation.\",\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here.\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef allows any non-core object, as well as PersistentVolumeClaim objects. * While dataSource ignores disallowed values (dropping them), dataSourceRef preserves all values, and generates an error if a disallowed value is specified. * While dataSource only allows local objects, dataSourceRef allows objects in any namespaces. (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the operator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"fc\": {\n \"description\": \"fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun is Optional: FC target lun number\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"targetWWNs\": {\n \"description\": \"targetWWNs is Optional: FC target worldwide names (WWNs)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"wwids\": {\n \"description\": \"wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"flexVolume\": {\n \"description\": \"flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.\",\n \"properties\": {\n \"driver\": {\n \"description\": \"driver is the name of the driver to use for this volume.\",\n \"type\": \"string\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". The default filesystem depends on FlexVolume script.\",\n \"type\": \"string\"\n },\n \"options\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"options is Optional: this field holds extra command options if any.\",\n \"type\": \"object\"\n },\n \"readOnly\": {\n \"description\": \"readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"driver\"\n ],\n \"type\": \"object\"\n },\n \"flocker\": {\n \"description\": \"flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\",\n \"properties\": {\n \"datasetName\": {\n \"description\": \"datasetName is Name of the dataset stored as metadata -\\u003e name on the dataset for Flocker should be considered as deprecated\",\n \"type\": \"string\"\n },\n \"datasetUUID\": {\n \"description\": \"datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"gcePersistentDisk\": {\n \"description\": \"gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"partition\": {\n \"description\": \"partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \\\"1\\\". Similarly, the volume partition for /dev/sda is \\\"0\\\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"pdName\": {\n \"description\": \"pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"pdName\"\n ],\n \"type\": \"object\"\n },\n \"gitRepo\": {\n \"description\": \"gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.\",\n \"properties\": {\n \"directory\": {\n \"description\": \"directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"repository is the URL\",\n \"type\": \"string\"\n },\n \"revision\": {\n \"description\": \"revision is the commit hash for the specified revision.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"repository\"\n ],\n \"type\": \"object\"\n },\n \"glusterfs\": {\n \"description\": \"glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"path\": {\n \"description\": \"path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"hostPath\": {\n \"description\": \"hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath --- TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not mount host directories as read/write.\",\n \"properties\": {\n \"path\": {\n \"description\": \"path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"type for HostPath Volume Defaults to \\\"\\\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"iscsi\": {\n \"description\": \"iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md\",\n \"properties\": {\n \"chapAuthDiscovery\": {\n \"description\": \"chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"chapAuthSession\": {\n \"description\": \"chapAuthSession defines whether support iSCSI Session CHAP authentication\",\n \"type\": \"boolean\"\n },\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"initiatorName\": {\n \"description\": \"initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface \\u003ctarget portal\\u003e:\\u003cvolume name\\u003e will be created for the connection.\",\n \"type\": \"string\"\n },\n \"iqn\": {\n \"description\": \"iqn is the target iSCSI Qualified Name.\",\n \"type\": \"string\"\n },\n \"iscsiInterface\": {\n \"description\": \"iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).\",\n \"type\": \"string\"\n },\n \"lun\": {\n \"description\": \"lun represents iSCSI Target Lun number.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"portals\": {\n \"description\": \"portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is the CHAP Secret for iSCSI target and initiator authentication\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"targetPortal\": {\n \"description\": \"targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"iqn\",\n \"lun\",\n \"targetPortal\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\",\n \"type\": \"string\"\n },\n \"nfs\": {\n \"description\": \"nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"properties\": {\n \"path\": {\n \"description\": \"path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"boolean\"\n },\n \"server\": {\n \"description\": \"server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\",\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"persistentVolumeClaim\": {\n \"description\": \"persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"claimName\": {\n \"description\": \"claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Will force the ReadOnly setting in VolumeMounts. Default false.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"claimName\"\n ],\n \"type\": \"object\"\n },\n \"photonPersistentDisk\": {\n \"description\": \"photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"pdID\": {\n \"description\": \"pdID is the ID that identifies Photon Controller persistent disk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"pdID\"\n ],\n \"type\": \"object\"\n },\n \"portworxVolume\": {\n \"description\": \"portworxVolume represents a portworx volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"volumeID\": {\n \"description\": \"volumeID uniquely identifies a Portworx volume\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumeID\"\n ],\n \"type\": \"object\"\n },\n \"projected\": {\n \"description\": \"projected items for all in one resources secrets, configmaps, and downward API\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"sources\": {\n \"description\": \"sources is the list of volume projections\",\n \"items\": {\n \"description\": \"Projection that may be projected along with other supported volume types\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"configMap information about the configMap data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional specify whether the ConfigMap or its keys must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"downwardAPI\": {\n \"description\": \"downwardAPI information about the downwardAPI data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"Items is a list of DownwardAPIVolume file\",\n \"items\": {\n \"description\": \"DownwardAPIVolumeFile represents information to create the file containing the pod field\",\n \"properties\": {\n \"fieldRef\": {\n \"description\": \"Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\"\n },\n \"mode\": {\n \"description\": \"Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'\",\n \"type\": \"string\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret information about the secret data to project\",\n \"properties\": {\n \"items\": {\n \"description\": \"items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"serviceAccountToken\": {\n \"description\": \"serviceAccountToken is information about the serviceAccountToken data to project\",\n \"properties\": {\n \"audience\": {\n \"description\": \"audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.\",\n \"type\": \"string\"\n },\n \"expirationSeconds\": {\n \"description\": \"expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the path relative to the mount point of the file to project the token into.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"path\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"quobyte\": {\n \"description\": \"quobyte represents a Quobyte mount on the host that shares a pod's lifetime\",\n \"properties\": {\n \"group\": {\n \"description\": \"group to map volume access to Default is no group\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"registry\": {\n \"description\": \"registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes\",\n \"type\": \"string\"\n },\n \"tenant\": {\n \"description\": \"tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin\",\n \"type\": \"string\"\n },\n \"user\": {\n \"description\": \"user to map volume access to Defaults to serivceaccount user\",\n \"type\": \"string\"\n },\n \"volume\": {\n \"description\": \"volume is a string that references an already created Quobyte volume by name.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"registry\",\n \"volume\"\n ],\n \"type\": \"object\"\n },\n \"rbd\": {\n \"description\": \"rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd TODO: how do we prevent errors in the filesystem from compromising the machine\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"keyring\": {\n \"description\": \"keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"monitors\": {\n \"description\": \"monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pool\": {\n \"description\": \"pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"user\": {\n \"description\": \"user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"image\",\n \"monitors\"\n ],\n \"type\": \"object\"\n },\n \"scaleIO\": {\n \"description\": \"scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Default is \\\"xfs\\\".\",\n \"type\": \"string\"\n },\n \"gateway\": {\n \"description\": \"gateway is the host address of the ScaleIO API Gateway.\",\n \"type\": \"string\"\n },\n \"protectionDomain\": {\n \"description\": \"protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"sslEnabled\": {\n \"description\": \"sslEnabled Flag enable/disable SSL communication with Gateway, default false\",\n \"type\": \"boolean\"\n },\n \"storageMode\": {\n \"description\": \"storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.\",\n \"type\": \"string\"\n },\n \"storagePool\": {\n \"description\": \"storagePool is the ScaleIO Storage Pool associated with the protection domain.\",\n \"type\": \"string\"\n },\n \"system\": {\n \"description\": \"system is the name of the storage system as configured in ScaleIO.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"gateway\",\n \"secretRef\",\n \"system\"\n ],\n \"type\": \"object\"\n },\n \"secret\": {\n \"description\": \"secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"properties\": {\n \"defaultMode\": {\n \"description\": \"defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"items\": {\n \"description\": \"items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.\",\n \"items\": {\n \"description\": \"Maps a string key to a path within a volume.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the key to project.\",\n \"type\": \"string\"\n },\n \"mode\": {\n \"description\": \"mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"path\": {\n \"description\": \"path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\",\n \"path\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"optional\": {\n \"description\": \"optional field specify whether the Secret or its keys must be defined\",\n \"type\": \"boolean\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageos\": {\n \"description\": \"storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.\",\n \"type\": \"boolean\"\n },\n \"secretRef\": {\n \"description\": \"secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.\",\n \"type\": \"string\"\n },\n \"volumeNamespace\": {\n \"description\": \"volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \\\"default\\\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vsphereVolume\": {\n \"description\": \"vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\",\n \"properties\": {\n \"fsType\": {\n \"description\": \"fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \\\"ext4\\\", \\\"xfs\\\", \\\"ntfs\\\". Implicitly inferred to be \\\"ext4\\\" if unspecified.\",\n \"type\": \"string\"\n },\n \"storagePolicyID\": {\n \"description\": \"storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\",\n \"type\": \"string\"\n },\n \"storagePolicyName\": {\n \"description\": \"storagePolicyName is the storage Policy Based Management (SPBM) profile name.\",\n \"type\": \"string\"\n },\n \"volumePath\": {\n \"description\": \"volumePath is the path that identifies vSphere volume vmdk\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"volumePath\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"installPlanApproval\": {\n \"description\": \"Approval is the user approval policy for an InstallPlan. It must be one of \\\"Automatic\\\" or \\\"Manual\\\".\",\n \"type\": \"string\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n },\n \"sourceNamespace\": {\n \"type\": \"string\"\n },\n \"startingCSV\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"source\",\n \"sourceNamespace\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"metadata\",\n \"spec\"\n ],\n \"title\": \"Subscription\",\n \"type\": \"object\"\n}", + "version": "operators.coreos.com/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Subscription", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Vizier.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Vizier.json new file mode 100644 index 00000000000..5148ec1cdb7 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/components/Vizier.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "Vizier", + "schema": "{\n \"description\": \"Vizier is the Schema for the viziers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VizierSpec defines the desired state of Vizier\",\n \"properties\": {\n \"autopilot\": {\n \"description\": \"Autopilot should be set if running Pixie on GKE Autopilot.\",\n \"type\": \"boolean\"\n },\n \"clockConverter\": {\n \"description\": \"ClockConverter specifies which routine to use for converting timestamps to a synced reference time.\",\n \"enum\": [\n \"default\",\n \"grpc\"\n ],\n \"type\": \"string\"\n },\n \"cloudAddr\": {\n \"description\": \"CloudAddr is the address of the cloud instance that the Vizier should be pointing to.\",\n \"type\": \"string\"\n },\n \"clusterName\": {\n \"description\": \"ClusterName is a name for the Vizier instance, usually specifying which cluster the Vizier is deployed to. If not specified, a random name will be generated.\",\n \"type\": \"string\"\n },\n \"customDeployKeySecret\": {\n \"description\": \"CustomDeployKeySecret is the name of the secret where the deploy key is stored.\",\n \"type\": \"string\"\n },\n \"dataAccess\": {\n \"description\": \"DataAccess defines the level of data that may be accesssed when executing a script on the cluster. If none specified, assumes full data access.\",\n \"enum\": [\n \"Full\",\n \"Restricted\"\n ],\n \"type\": \"string\"\n },\n \"dataCollectorParams\": {\n \"description\": \"DataCollectorParams specifies the set of params for configuring the dataCollector. If no params are specified, defaults are used.\",\n \"properties\": {\n \"customPEMFlags\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"This contains custom flags that should be passed to the PEM via environment variables.\",\n \"type\": \"object\"\n },\n \"datastreamBufferSize\": {\n \"description\": \"DatastreamBufferSize is the data buffer size per connection. Default size is 1 Mbyte. For high-throughput applications, try increasing this number if experiencing data loss.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"datastreamBufferSpikeSize\": {\n \"description\": \"DatastreamBufferSpikeSize is the maximum temporary size of a data stream buffer before processing.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"deployKey\": {\n \"description\": \"DeployKey is the deploy key associated with the Vizier instance. This is used to link the Vizier to a specific user/org. This is required unless specifying a CustomDeployKeySecret.\",\n \"type\": \"string\"\n },\n \"devCloudNamespace\": {\n \"description\": \"DevCloudNamespace should be specified only for dev versions of Pixie cloud which have no ingress to help redirect traffic to the correct service. The DevCloudNamespace is the namespace that the dev Pixie cloud is running on, for example: \\\"plc-dev\\\".\",\n \"type\": \"string\"\n },\n \"disableAutoUpdate\": {\n \"description\": \"DisableAutoUpdate specifies whether auto update should be enabled for the Vizier instance.\",\n \"type\": \"boolean\"\n },\n \"leadershipElectionParams\": {\n \"description\": \"LeadershipElectionParams specifies configurable values for the K8s leaderships elections which Vizier uses manage pod leadership.\",\n \"properties\": {\n \"electionPeriodMs\": {\n \"description\": \"ElectionPeriodMs defines how frequently Vizier attempts to run a K8s leader election, in milliseconds. The period also determines how long Vizier waits for a leader election response back from the K8s API. If the K8s API is slow to respond, consider increasing this number.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"patches\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Patches defines patches that should be applied to Vizier resources. The key of the patch should be the name of the resource that is patched. The value of the patch is the patch, encoded as a string which follow the \\\"strategic merge patch\\\" rules for K8s.\",\n \"type\": \"object\"\n },\n \"pemMemoryLimit\": {\n \"description\": \"PemMemoryLimit is a memory limit applied specifically to PEM pods.\",\n \"type\": \"string\"\n },\n \"pemMemoryRequest\": {\n \"description\": \"PemMemoryRequest is a memory request applied specifically to PEM pods. It will automatically use the value of pemMemoryLimit if not specified.\",\n \"type\": \"string\"\n },\n \"pod\": {\n \"description\": \"Pod defines the policy for creating Vizier pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations specifies the annotations to attach to pods the operator creates.\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels specifies the labels to attach to pods the operator creates.\",\n \"type\": \"object\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ This field cannot be updated once the cluster is created.\",\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"Resources is the resource requirements for a container. This field cannot be updated once the cluster is created.\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. \\n This is an alpha field and requires enabling the DynamicResourceAllocation feature gate. \\n This field is immutable.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"securityContext\": {\n \"description\": \"The securityContext which should be set on non-privileged pods. All pods which require privileged permissions will still require a privileged securityContext.\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Whether a securityContext should be set on the pod. In cases where no PSPs are applied to the cluster, this is not necessary.\",\n \"type\": \"boolean\"\n },\n \"fsGroup\": {\n \"description\": \"A special supplemental group that applies to all containers in a pod.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsGroup\": {\n \"description\": \"The GID to run the entrypoint of the container process.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"runAsUser\": {\n \"description\": \"The UID to run the entrypoint of the container process.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations allows scheduling pods on nodes with matching taints. More info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/: This field cannot be updated once the cluster is created.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches the triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"registry\": {\n \"description\": \"Registry specifies the image registry to use rather than Pixie's default registry (gcr.io). We expect any forward slashes in Pixie's image paths are replaced with a \\\"-\\\". For example: \\\"gcr.io/pixie-oss/pixie-dev/vizier/metadata_server_image:latest\\\" should be pushed to \\\"$registry/gcr.io-pixie-oss-pixie-dev-vizier-metadata_server_image:latest\\\".\",\n \"type\": \"string\"\n },\n \"useEtcdOperator\": {\n \"description\": \"UseEtcdOperator specifies whether the metadata service should use etcd for storage.\",\n \"type\": \"boolean\"\n },\n \"version\": {\n \"description\": \"Version is the desired version of the Vizier instance.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"Vizier\",\n \"type\": \"object\"\n}", + "version": "px.dev/v1alpha1" + }, + "configuration": null, + "description": "", + "displayName": "Vizier", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz" + }, + "model": { + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/newrelic/helm-charts/releases/download/nri-bundle-5.0.91/nri-bundle-5.0.91.tgz", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "ignored", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "", + "svgWhite": "" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/nri-bundle/5.0.91/v1.0.0/model.json b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/model.json new file mode 100644 index 00000000000..b4c10e29ca2 --- /dev/null +++ b/server/meshmodel/nri-bundle/5.0.91/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Uncategorized" + }, + "displayName": "NRI Bundle", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "5.0.91" + }, + "name": "nri-bundle", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/trivy-operator/0.9.0/v1.0.0/model.json b/server/meshmodel/trivy-operator/0.9.0/v1.0.0/model.json new file mode 100644 index 00000000000..731c66b6bf8 --- /dev/null +++ b/server/meshmodel/trivy-operator/0.9.0/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Uncategorized" + }, + "displayName": "Trivy Operator", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "0.9.0" + }, + "name": "trivy-operator", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Uncategorized", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/tuf/0.1.17/v1.0.0/model.json b/server/meshmodel/tuf/0.1.17/v1.0.0/model.json new file mode 100644 index 00000000000..33bee324cdd --- /dev/null +++ b/server/meshmodel/tuf/0.1.17/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Provisioning" + }, + "displayName": "Tuf", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#000000", + "secondaryColor": "#454545", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"16.74 -5.76 392.52 442.52\" height=\"20\" width=\"20\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.st2{fill:#0082ca}\u003c/style\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M213.2 328.2c-1.5 0-3-.6-4.1-1.9-1.9-2.3-1.7-5.7.6-7.6l178.1-152c2-5.9 2.3-11 2.3-11.6 0-33.3-22.1-61.8-22.3-62-.1-.1-.2-.3-.3-.4-30.5-47.6-73.4-62.7-94-70-11.7-4.1-54.4-16.5-112.7-2.2-47.4 11.7-88 43.5-111.5 87.3-11.2 20.9-13.3 36.4-13 45.7 0 1.9.2 3.6.4 5.1 9.4-10 28.1-24.8 56.5-23.4 2.7.1 38.1 1.6 58.5 34.6 7.9-12.4 25.8-32.7 59.7-34.7 1.2-.1 12.3-.8 26 4 11.3 3.9 26.4 12.4 38 30.4 7.6-12.3 25-32.5 58-34.4 2.9-.2 5.5 2.1 5.7 5.1.2 3-2.1 5.5-5.1 5.7-39.6 2.2-52.8 35.4-53.3 36.9-.8 2-2.6 3.4-4.8 3.5-2.1.1-4.1-1.1-5.1-3-19.7-40.1-58.2-37.4-58.6-37.4h-.1c-41.1 2.4-54.8 36-55.3 37.4-.8 2-2.7 3.4-4.9 3.4s-4.1-1.2-5-3.1C130.4 147.1 93.3 146 93 146h-.2c-35.5-1.9-53.8 26.7-54 27-1 1.6-2.8 2.6-4.7 2.5-1.9-.1-3.6-1.1-4.6-2.8-.6-1-13.5-25.5 10.3-70 24.9-46.5 68-80.3 118.4-92.7 61.2-15.1 106.5-1.9 118.9 2.5 20 7.1 66.9 23.7 99.3 74.2 2.3 3 24.4 32.7 24.4 68.6 0 .5-.2 8.1-3.5 16.5-.3.8-.8 1.6-1.5 2.2L216.6 327c-.9.8-2.2 1.2-3.4 1.2z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M212.2 327.3c-1.2 0-2.5-.4-3.5-1.3l-178-151.9c-2.3-1.9-2.5-5.3-.6-7.6s5.3-2.5 7.6-.6l178 151.9c2.3 1.9 2.5 5.3.6 7.6-1 1.3-2.6 1.9-4.1 1.9z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M212.8 327.4c-2.1 0-4.1-1.2-4.9-3.2l-61.1-140.8c-1.2-2.7.1-5.9 2.8-7.1 2.7-1.2 5.9.1 7.1 2.8l61.1 140.8c1.2 2.7-.1 5.9-2.8 7.1-.8.2-1.5.4-2.2.4z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M213.2 328.2c-.7 0-1.5-.1-2.2-.5-2.7-1.2-4-4.4-2.8-7.1l62.4-142.1c1.2-2.7 4.4-4 7.1-2.8 2.7 1.2 4 4.4 2.8 7.1L218.1 325c-.9 2-2.9 3.2-4.9 3.2z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M275.9 428.5h-127c-3 0-5.4-2.4-5.4-5.4v-100c0-3 2.4-5.4 5.4-5.4h31.6c3 0 5.4 2.4 5.4 5.4s-2.4 5.4-5.4 5.4h-26.2v89.3h116.3v-89.3H214c-3 0-5.4-2.4-5.4-5.4s2.4-5.4 5.4-5.4h62c3 0 5.4 2.4 5.4 5.4v100c-.1 3-2.5 5.4-5.5 5.4z\"\u003e\u003c/path\u003e\u003ccircle xmlns=\"http://www.w3.org/2000/svg\" cx=\"177.6\" cy=\"323.1\" r=\"12.1\" class=\"st2\"\u003e\u003c/circle\u003e\u003ccircle xmlns=\"http://www.w3.org/2000/svg\" cx=\"335.3\" cy=\"140.3\" r=\"12.1\" class=\"st2\"\u003e\u003c/circle\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M250.4 405.6c-3 0-5.4-2.4-5.4-5.4v-54.9c0-2.2 1.3-4.1 3.3-5 2-.8 4.3-.4 5.9 1.2l11.7 11.7c2.1 2.1 2.1 5.5 0 7.6-2.1 2.1-5.5 2.1-7.6 0l-2.6-2.6v41.9c0 3.1-2.4 5.5-5.3 5.5z\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M238.6 362.5c-1.4 0-2.8-.5-3.8-1.6-2.1-2.1-2.1-5.5 0-7.6l11.8-11.8c2.1-2.1 5.5-2.1 7.6 0 2.1 2.1 2.1 5.5 0 7.6l-11.8 11.8c-1 1-2.4 1.6-3.8 1.6z\"\u003e\u003c/path\u003e\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" role=\"img\" viewBox=\"20.55 -3.95 390.16 439.66\" height=\"20\" width=\"20\"\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003esvg {enable-background:new 0 0 432 432}\u003c/style\u003e\u003cstyle xmlns=\"http://www.w3.org/2000/svg\"\u003e.st2{fill:#fff}\u003c/style\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M215.7 327.8c-1.5 0-3-.6-4.1-1.9-1.9-2.2-1.6-5.6.6-7.5l177.1-151.2c2-5.8 2.3-10.9 2.3-11.5 0-33.1-21.9-61.4-22.2-61.7-.1-.1-.2-.3-.3-.4-30.3-47.3-72.9-62.4-93.4-69.6-11.6-4.1-54.1-16.4-112.1-2.1-47.1 11.6-87.5 43.3-110.8 86.8-11.1 20.8-13.2 36.1-13 45.4 0 1.9.2 3.5.4 5 9.3-9.9 28-24.6 56.2-23.3 2.7.1 37.9 1.5 58.2 34.4 7.8-12.3 25.6-32.5 59.3-34.5 1.2-.1 12.2-.7 25.8 4 11.3 3.9 26.3 12.3 37.8 30.2 7.6-12.2 24.8-32.3 57.6-34.2 2.9-.2 5.5 2.1 5.6 5 .2 2.9-2.1 5.5-5 5.6-39.4 2.2-52.5 35.2-53 36.6-.8 2-2.6 3.3-4.8 3.4-2.1.1-4.1-1.1-5-3-19.5-39.9-57.8-37.2-58.2-37.1h-.1c-40.8 2.4-54.4 35.8-55 37.2-.8 2-2.7 3.3-4.8 3.4-2.2 0-4.1-1.2-5-3.1-16.4-36.3-53.2-37.3-53.6-37.3H96c-35.2-1.8-53.4 26.6-53.6 26.9-1 1.6-2.8 2.6-4.7 2.5-1.9-.1-3.6-1.1-4.5-2.8-.6-1-13.4-25.4 10.3-69.6 24.6-46 67.5-79.6 117.6-91.9 60.9-15 105.8-1.9 118.2 2.4 19.9 7 66.5 23.5 98.7 73.7 2.3 3 24.3 32.5 24.3 68.2 0 .4-.2 8-3.4 16.5-.3.8-.8 1.6-1.5 2.2l-178.2 152c-1 .9-2.3 1.3-3.5 1.3z\" class=\"st2\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M214.8 326.9c-1.2 0-2.5-.4-3.5-1.3l-176.9-151c-2.2-1.9-2.5-5.3-.6-7.5s5.3-2.5 7.5-.6l176.9 151c2.2 1.9 2.5 5.3.6 7.5-1 1.3-2.5 1.9-4 1.9z\" class=\"st2\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M215.3 326.9c-2.1 0-4-1.2-4.9-3.2l-60.7-139.9c-1.2-2.7.1-5.9 2.8-7 2.7-1.2 5.9.1 7 2.8l60.7 139.9c1.2 2.7-.1 5.9-2.8 7-.7.3-1.4.4-2.1.4z\" class=\"st2\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M215.7 327.8c-.7 0-1.4-.1-2.1-.5-2.7-1.2-3.9-4.3-2.7-7l62-141.2c1.2-2.7 4.3-3.9 7-2.7 2.7 1.2 3.9 4.3 2.7 7l-62 141.2c-.9 2-2.8 3.2-4.9 3.2z\" class=\"st2\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M278.1 427.5H151.8c-3 0-5.3-2.4-5.3-5.3v-99.4c0-3 2.4-5.3 5.3-5.3h31.4c3 0 5.3 2.4 5.3 5.3 0 3-2.4 5.3-5.3 5.3h-26v88.8h115.6V328h-56.3c-3 0-5.3-2.4-5.3-5.3 0-3 2.4-5.3 5.3-5.3h61.6c3 0 5.3 2.4 5.3 5.3v99.4c0 3-2.4 5.4-5.3 5.4z\" class=\"st2\"\u003e\u003c/path\u003e\u003ccircle xmlns=\"http://www.w3.org/2000/svg\" cx=\"180.4\" cy=\"322.7\" r=\"12.1\" class=\"st2\"\u003e\u003c/circle\u003e\u003ccircle xmlns=\"http://www.w3.org/2000/svg\" cx=\"337.1\" cy=\"141\" r=\"12.1\" class=\"st2\"\u003e\u003c/circle\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M252.7 404.8c-3 0-5.3-2.4-5.3-5.3v-54.6c0-2.2 1.3-4.1 3.3-4.9 2-.8 4.3-.4 5.8 1.2l11.7 11.7c2.1 2.1 2.1 5.5 0 7.6-2.1 2.1-5.5 2.1-7.6 0l-2.6-2.6v41.7c0 2.8-2.4 5.2-5.3 5.2z\" class=\"st2\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M241 361.9c-1.4 0-2.7-.5-3.8-1.6-2.1-2.1-2.1-5.5 0-7.6l11.7-11.7c2.1-2.1 5.5-2.1 7.6 0 2.1 2.1 2.1 5.5 0 7.6l-11.7 11.7c-1.1 1-2.4 1.6-3.8 1.6z\" class=\"st2\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.1.17" + }, + "name": "tuf", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Security \u0026 Compliance", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VLogs.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VLogs.json new file mode 100644 index 00000000000..9576ddb3c0c --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VLogs.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VLogs", + "schema": "{\n \"description\": \"VLogs is the Schema for the vlogs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VLogsSpec defines the desired state of VLogs\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VLogs\\nobject, which shall be mounted into the VLogs Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VLogs pod\\nfor example remoteWrite.tmpDataPath: /tmp\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VLogs pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"futureRetention\": {\n \"description\": \"FutureRetention for the stored logs\\nLog entries with timestamps bigger than now+futureRetention are rejected during data ingestion; see https://docs.victoriametrics.com/victorialogs/#retention\",\n \"type\": \"string\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases provides mapping for ip and hostname,\\nthat would be propagated to pod,\\ncannot be used with HostNetwork.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"ip\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VLogs\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VLogs configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VLogs to be configured with.\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logIngestedRows\": {\n \"description\": \"Whether to log all the ingested log entries; this can be useful for debugging of data ingestion; see https://docs.victoriametrics.com/victorialogs/data-ingestion/\",\n \"type\": \"boolean\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VictoriaLogs to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"logNewStreams\": {\n \"description\": \"LogNewStreams Whether to log creation of new streams; this can be useful for debugging of high cardinality issues with log streams; see https://docs.victoriametrics.com/victorialogs/keyconcepts/#stream-fields\",\n \"type\": \"boolean\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VLogs pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port listen port\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"PriorityClassName assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"removePvcAfterDelete\": {\n \"description\": \"RemovePvcAfterDelete - if true, controller adds ownership to pvc\\nand after VLogs objest deletion - pvc will be garbage collected\\nby controller manager\",\n \"type\": \"boolean\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VLogs\\nit can be 0 or 1\\nif you need more - use vm cluster\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not defined default resources from operator config will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retentionPeriod\": {\n \"description\": \"RetentionPeriod for the stored logs\",\n \"type\": \"string\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VLogs\\nobject, which shall be mounted into the VLogs Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVLogs Pods.\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vlogs VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vlogs service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"storage\": {\n \"description\": \"Storage is the definition of how storage will be used by the VLogs\\nby default it`s empty dir\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageDataPath\": {\n \"description\": \"StorageDataPath disables spec.storage option and overrides arg for victoria-logs binary --storageDataPath,\\nits users responsibility to mount proper device into given path.\",\n \"type\": \"string\"\n },\n \"storageMetadata\": {\n \"description\": \"StorageMeta defines annotations and labels attached to PVC for given vlogs CR\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VLogs container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output deploy definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"retentionPeriod\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"V Logs\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "V Logs", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAgent.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAgent.json new file mode 100644 index 00000000000..d93f335f86e --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAgent.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMAgent", + "schema": "{\n \"description\": \"VMAgent - is a tiny but brave agent, which helps you collect metrics from various sources and stores them in VictoriaMetrics\\nor any other Prometheus-compatible storage system that supports the remote_write protocol.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMAgentSpec defines the desired state of VMAgent\",\n \"properties\": {\n \"aPIServerConfig\": {\n \"description\": \"APIServerConfig allows specifying a host and auth methods to access apiserver.\\nIf left empty, VMAgent is assumed to run inside of the cluster\\nand will discover API servers automatically and use the pod's CA certificate\\nand bearer token file at /var/run/secrets/kubernetes.io/serviceaccount/.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization configures generic authorization params\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerToken\": {\n \"description\": \"Bearer token for accessing apiserver.\",\n \"type\": \"string\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for accessing apiserver.\",\n \"type\": \"string\"\n },\n \"host\": {\n \"description\": \"Host of apiserver.\\nA valid string consisting of a hostname or IP followed by an optional port number\",\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig Config to use for accessing apiserver.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"host\"\n ],\n \"type\": \"object\"\n },\n \"additionalScrapeConfigs\": {\n \"description\": \"AdditionalScrapeConfigs As scrape configs are appended, the user is responsible to make sure it\\nis valid. Note that using this feature may expose the possibility to\\nbreak upgrades of VMAgent. It is advised to review VMAgent release\\nnotes to ensure that no incompatible scrape configs are going to break\\nVMAgent after the upgrade.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"arbitraryFSAccessThroughSMs\": {\n \"description\": \"ArbitraryFSAccessThroughSMs configures whether configuration\\nbased on EndpointAuth can access arbitrary files on the file system\\nof the VMAgent container e.g. bearer token files, basic auth, tls certs\",\n \"properties\": {\n \"deny\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"claimTemplates\": {\n \"description\": \"ClaimTemplates allows adding additional VolumeClaimTemplates for VMAgent in StatefulMode\",\n \"items\": {\n \"description\": \"PersistentVolumeClaim is a user's request for and claim to a persistent volume\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the vmagent\\nobject, which shall be mounted into the vmagent Pods.\\nwill be mounted at path /etc/vm/configs\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configReloaderExtraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ConfigReloaderExtraArgs that will be passed to VMAuths config-reloader container\\nfor example resyncInterval: \\\"30s\\\"\",\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy set DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"enforcedNamespaceLabel\": {\n \"description\": \"EnforcedNamespaceLabel enforces adding a namespace label of origin for each alert\\nand metric that is user created. The label value will always be the namespace of the object that is\\nbeing created.\",\n \"type\": \"string\"\n },\n \"externalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExternalLabels The labels to add to any time series scraped by vmagent.\\nit doesn't affect metrics ingested directly by push API's\",\n \"type\": \"object\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VMAgent pod\\nfor example remoteWrite.tmpDataPath: /tmp\\nit would be converted to flag --remoteWrite.tmpDataPath=/tmp\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMAgent pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"host_aliases\": {\n \"description\": \"HostAliases provides mapping between ip and hostnames,\\nthat would be propagated to pod,\\ncannot be used with HostNetwork.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"ip\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ignoreNamespaceSelectors\": {\n \"description\": \"IgnoreNamespaceSelectors if set to true will ignore NamespaceSelector settings from\\nscrape objects, and they will only discover endpoints\\nwithin their current namespace. Defaults to false.\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMAgent\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"ingestOnlyMode\": {\n \"description\": \"IngestOnlyMode switches vmagent into unmanaged mode\\nit disables any config generation for scraping\\nCurrently it prevents vmagent from managing tls and auth options for remote write\",\n \"type\": \"boolean\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the vmagent configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"inlineRelabelConfig\": {\n \"description\": \"InlineRelabelConfig - defines GlobalRelabelConfig for vmagent, can be defined directly at CRD.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"inlineScrapeConfig\": {\n \"description\": \"InlineScrapeConfig As scrape configs are appended, the user is responsible to make sure it\\nis valid. Note that using this feature may expose the possibility to\\nbreak upgrades of VMAgent. It is advised to review VMAgent release\\nnotes to ensure that no incompatible scrape configs are going to break\\nVMAgent after the upgrade.\\nit should be defined as single yaml file.\\ninlineScrapeConfig: |\\n - job_name: \\\"prometheus\\\"\\n static_configs:\\n - targets: [\\\"localhost:9090\\\"]\",\n \"type\": \"string\"\n },\n \"insertPorts\": {\n \"description\": \"InsertPorts - additional listen ports for data ingestion.\",\n \"properties\": {\n \"graphitePort\": {\n \"description\": \"GraphitePort listen port\",\n \"type\": \"string\"\n },\n \"influxPort\": {\n \"description\": \"InfluxPort listen port\",\n \"type\": \"string\"\n },\n \"openTSDBHTTPPort\": {\n \"description\": \"OpenTSDBHTTPPort for http connections.\",\n \"type\": \"string\"\n },\n \"openTSDBPort\": {\n \"description\": \"OpenTSDBPort for tcp and udp listen\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"license\": {\n \"description\": \"License allows to configure license key to be used for enterprise features.\\nUsing license key is supported starting from VictoriaMetrics v1.94.0.\\nSee [here](https://docs.victoriametrics.com/enterprise)\",\n \"properties\": {\n \"key\": {\n \"description\": \"Enterprise license key. This flag is available only in [VictoriaMetrics enterprise](https://docs.victoriametrics.com/enterprise).\\nTo request a trial license, [go to](https://victoriametrics.com/products/enterprise/trial)\",\n \"type\": \"string\"\n },\n \"keyRef\": {\n \"description\": \"KeyRef is reference to secret with license key for enterprise features.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMAgent to be configured with.\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMAgent to be configured with.\\nINFO, WARN, ERROR, FATAL, PANIC\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"maxScrapeInterval\": {\n \"description\": \"MaxScrapeInterval allows limiting maximum scrape interval for VMServiceScrape, VMPodScrape and other scrapes\\nIf interval is higher than defined limit, `maxScrapeInterval` will be used.\",\n \"type\": \"string\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"minScrapeInterval\": {\n \"description\": \"MinScrapeInterval allows limiting minimal scrape interval for VMServiceScrape, VMPodScrape and other scrapes\\nIf interval is lower than defined limit, `minScrapeInterval` will be used.\",\n \"type\": \"string\"\n },\n \"nodeScrapeNamespaceSelector\": {\n \"description\": \"NodeScrapeNamespaceSelector defines Namespaces to be selected for VMNodeScrape discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"nodeScrapeRelabelTemplate\": {\n \"description\": \"NodeScrapeRelabelTemplate defines relabel config, that will be added to each VMNodeScrape.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"nodeScrapeSelector\": {\n \"description\": \"NodeScrapeSelector defines VMNodeScrape to be selected for scraping.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"overrideHonorLabels\": {\n \"description\": \"OverrideHonorLabels if set to true overrides all user configured honor_labels.\\nIf HonorLabels is set in scrape objects to true, this overrides honor_labels to false.\",\n \"type\": \"boolean\"\n },\n \"overrideHonorTimestamps\": {\n \"description\": \"OverrideHonorTimestamps allows to globally enforce honoring timestamps in all scrape configs.\",\n \"type\": \"boolean\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the vmagent pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"podScrapeNamespaceSelector\": {\n \"description\": \"PodScrapeNamespaceSelector defines Namespaces to be selected for VMPodScrape discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"podScrapeRelabelTemplate\": {\n \"description\": \"PodScrapeRelabelTemplate defines relabel config, that will be added to each VMPodScrape.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"podScrapeSelector\": {\n \"description\": \"PodScrapeSelector defines PodScrapes to be selected for target discovery.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"port\": {\n \"description\": \"Port listen address\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"PriorityClassName assigned to the Pods\",\n \"type\": \"string\"\n },\n \"probeNamespaceSelector\": {\n \"description\": \"ProbeNamespaceSelector defines Namespaces to be selected for VMProbe discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"probeScrapeRelabelTemplate\": {\n \"description\": \"ProbeScrapeRelabelTemplate defines relabel config, that will be added to each VMProbeScrape.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"probeSelector\": {\n \"description\": \"ProbeSelector defines VMProbe to be selected for target probing.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"relabelConfig\": {\n \"description\": \"RelabelConfig ConfigMap with global relabel config -remoteWrite.relabelConfig\\nThis relabeling is applied to all the collected metrics before sending them to remote storage.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"remoteWrite\": {\n \"description\": \"RemoteWrite list of victoria metrics /some other remote write system\\nfor vm it must looks like: http://victoria-metrics-single:8429/api/v1/write\\nor for cluster different url\\nhttps://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmagent#splitting-data-streams-among-multiple-systems\",\n \"items\": {\n \"description\": \"VMAgentRemoteWriteSpec defines the remote storage configuration for VmAgent\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"inlineUrlRelabelConfig\": {\n \"description\": \"InlineUrlRelabelConfig defines relabeling config for remoteWriteURL, it can be defined at crd spec.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"sendTimeout\": {\n \"description\": \"Timeout for sending a single block of data to -remoteWrite.url (default 1m0s)\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"streamAggrConfig\": {\n \"description\": \"StreamAggrConfig defines stream aggregation configuration for VMAgent for -remoteWrite.url\",\n \"properties\": {\n \"configmap\": {\n \"description\": \"ConfigMap with stream aggregation rules\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dedupInterval\": {\n \"description\": \"Allows setting different de-duplication intervals per each configured remote storage\",\n \"type\": \"string\"\n },\n \"dropInput\": {\n \"description\": \"Allow drop all the input samples after the aggregation\",\n \"type\": \"boolean\"\n },\n \"dropInputLabels\": {\n \"description\": \"labels to drop from samples for aggregator before stream de-duplication and aggregation\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreFirstIntervals\": {\n \"type\": \"integer\"\n },\n \"ignoreOldSamples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"keepInput\": {\n \"description\": \"Allows writing both raw and aggregate data\",\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"description\": \"Stream aggregation rules\",\n \"items\": {\n \"description\": \"StreamAggrRule defines the rule in stream aggregation config\",\n \"properties\": {\n \"by\": {\n \"description\": \"By is an optional list of labels for grouping input series.\\n\\n\\nSee also Without.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dedup_interval\": {\n \"description\": \"DedupInterval is an optional interval for deduplication.\",\n \"type\": \"string\"\n },\n \"drop_input_labels\": {\n \"description\": \"DropInputLabels is an optional list with labels, which must be dropped before further processing of input samples.\\n\\n\\nLabels are dropped before de-duplication and aggregation.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"flush_on_shutdown\": {\n \"description\": \"FlushOnShutdown defines whether to flush the aggregation state on process termination\\nor config reload. Is `false` by default.\\nIt is not recommended changing this setting, unless unfinished aggregations states\\nare preferred to missing data points.\",\n \"type\": \"boolean\"\n },\n \"ignore_first_intervals\": {\n \"type\": \"integer\"\n },\n \"ignore_old_samples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"input_relabel_configs\": {\n \"description\": \"InputRelabelConfigs is an optional relabeling rules, which are applied on the input\\nbefore aggregation.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"description\": \"Interval is the interval between aggregations.\",\n \"type\": \"string\"\n },\n \"keep_metric_names\": {\n \"description\": \"KeepMetricNames instructs to leave metric names as is for the output time series without adding any suffix.\",\n \"type\": \"boolean\"\n },\n \"match\": {\n \"description\": \"Match is a label selector (or list of label selectors) for filtering time series for the given selector.\\n\\n\\nIf the match isn't set, then all the input time series are processed.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"no_align_flush_to_interval\": {\n \"description\": \"NoAlignFlushToInterval disables aligning of flushes to multiples of Interval.\\nBy default flushes are aligned to Interval.\",\n \"type\": \"boolean\"\n },\n \"output_relabel_configs\": {\n \"description\": \"OutputRelabelConfigs is an optional relabeling rules, which are applied\\non the aggregated output before being sent to remote storage.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"outputs\": {\n \"description\": \"Outputs is a list of output aggregate functions to produce.\\n\\n\\nThe following names are allowed:\\n\\n\\n- total - aggregates input counters\\n- increase - counts the increase over input counters\\n- count_series - counts the input series\\n- count_samples - counts the input samples\\n- sum_samples - sums the input samples\\n- last - the last biggest sample value\\n- min - the minimum sample value\\n- max - the maximum sample value\\n- avg - the average value across all the samples\\n- stddev - standard deviation across all the samples\\n- stdvar - standard variance across all the samples\\n- histogram_bucket - creates VictoriaMetrics histogram for input samples\\n- quantiles(phi1, ..., phiN) - quantiles' estimation for phi in the range [0..1]\\n\\n\\nThe output time series will have the following names:\\n\\n\\n input_name:aggr_\\u003cinterval\\u003e_\\u003coutput\\u003e\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"staleness_interval\": {\n \"description\": \"Staleness interval is interval after which the series state will be reset if no samples have been sent during it.\\nThe parameter is only relevant for outputs: total, total_prometheus, increase, increase_prometheus and histogram_bucket.\",\n \"type\": \"string\"\n },\n \"without\": {\n \"description\": \"Without is an optional list of labels, which must be excluded when grouping input series.\\n\\n\\nSee also By.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"interval\",\n \"outputs\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig describes tls configuration for remote write target\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"description\": \"URL of the endpoint to send samples to.\",\n \"type\": \"string\"\n },\n \"urlRelabelConfig\": {\n \"description\": \"ConfigMap with relabeling config which is applied to metrics before sending them to the corresponding -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"remoteWriteSettings\": {\n \"description\": \"RemoteWriteSettings defines global settings for all remoteWrite urls.\",\n \"properties\": {\n \"flushInterval\": {\n \"description\": \"Interval for flushing the data to remote storage. (default 1s)\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"label\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels in the form 'name=value' to add to all the metrics before sending them. This overrides the label if it already exists.\",\n \"type\": \"object\"\n },\n \"maxBlockSize\": {\n \"description\": \"The maximum size in bytes of unpacked request to send to remote storage\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxDiskUsagePerURL\": {\n \"description\": \"The maximum file-based buffer size in bytes at -remoteWrite.tmpDataPath\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"queues\": {\n \"description\": \"The number of concurrent queues\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"showURL\": {\n \"description\": \"Whether to show -remoteWrite.url in the exported metrics. It is hidden by default, since it can contain sensitive auth info\",\n \"type\": \"boolean\"\n },\n \"tmpDataPath\": {\n \"description\": \"Path to directory where temporary data for remote write component is stored (default vmagent-remotewrite-data)\",\n \"type\": \"string\"\n },\n \"useMultiTenantMode\": {\n \"description\": \"Configures vmagent accepting data via the same multitenant endpoints as vminsert at VictoriaMetrics cluster does,\\nsee [here](https://docs.victoriametrics.com/vmagent/#multitenancy).\\nit's global setting and affects all remote storage configurations\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMAgent cluster. The controller will\\neventually make the size of the running cluster equal to the expected\\nsize.\\nNOTE enable VMSingle deduplication for replica usage\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not specified - default setting will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdate\": {\n \"description\": \"RollingUpdate - overrides deployment update params.\",\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be scheduled above the desired number of\\npods.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nThis can not be 0 if MaxUnavailable is 0.\\nAbsolute number is calculated from percentage by rounding up.\\nDefaults to 25%.\\nExample: when this is set to 30%, the new ReplicaSet can be scaled up immediately when\\nthe rolling update starts, such that the total number of old and new pods do not exceed\\n130% of desired pods. Once old pods have been killed,\\nnew ReplicaSet can be scaled up further, ensuring that total number of pods running\\nat any time during the update is at most 130% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be unavailable during the update.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nAbsolute number is calculated from percentage by rounding down.\\nThis can not be 0 if MaxSurge is 0.\\nDefaults to 25%.\\nExample: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods\\nimmediately when the rolling update starts. Once new pods are ready, old ReplicaSet\\ncan be scaled down further, followed by scaling up the new ReplicaSet, ensuring\\nthat the total number of pods available at all times during the update is at\\nleast 70% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"scrapeConfigNamespaceSelector\": {\n \"description\": \"ScrapeConfigNamespaceSelector defines Namespaces to be selected for VMScrapeConfig discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"scrapeConfigRelabelTemplate\": {\n \"description\": \"ScrapeConfigRelabelTemplate defines relabel config, that will be added to each VMScrapeConfig.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"scrapeConfigSelector\": {\n \"description\": \"ScrapeConfigSelector defines VMScrapeConfig to be selected for target discovery.\\nWorks in combination with NamespaceSelector.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"scrapeInterval\": {\n \"description\": \"ScrapeInterval defines how often scrape targets by default\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"ScrapeTimeout defines global timeout for targets scrape\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the vmagent\\nobject, which shall be mounted into the vmagent Pods.\\nwill be mounted at path /etc/vm/secrets\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"selectAllByDefault\": {\n \"description\": \"SelectAllByDefault changes default behavior for empty CRD selectors, such ServiceScrapeSelector.\\nwith selectAllByDefault: true and empty serviceScrapeSelector and ServiceScrapeNamespaceSelector\\nOperator selects all exist serviceScrapes\\nwith selectAllByDefault: false - selects nothing\",\n \"type\": \"boolean\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVMAgent Pods.\",\n \"type\": \"string\"\n },\n \"serviceScrapeNamespaceSelector\": {\n \"description\": \"ServiceScrapeNamespaceSelector Namespaces to be selected for VMServiceScrape discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceScrapeRelabelTemplate\": {\n \"description\": \"ServiceScrapeRelabelTemplate defines relabel config, that will be added to each VMServiceScrape.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"serviceScrapeSelector\": {\n \"description\": \"ServiceScrapeSelector defines ServiceScrapes to be selected for target discovery.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmagent VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmagent service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"shardCount\": {\n \"description\": \"ShardCount - numbers of shards of VMAgent\\nin this case operator will use 1 deployment/sts per shard with\\nreplicas count according to spec.replicas,\\nsee [here](https://docs.victoriametrics.com/vmagent/#scraping-big-number-of-targets)\",\n \"type\": \"integer\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"statefulMode\": {\n \"description\": \"StatefulMode enables StatefulSet for `VMAgent` instead of Deployment\\nit allows using persistent storage for vmagent's persistentQueue\",\n \"type\": \"boolean\"\n },\n \"statefulRollingUpdateStrategy\": {\n \"description\": \"StatefulRollingUpdateStrategy allows configuration for strategyType\\nset it to RollingUpdate for disabling operator statefulSet rollingUpdate\",\n \"type\": \"string\"\n },\n \"statefulStorage\": {\n \"description\": \"StatefulStorage configures storage for StatefulSet\",\n \"properties\": {\n \"disableMountSubPath\": {\n \"description\": \"Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary.\\nDisableMountSubPath allows to remove any subPath usage in volume mounts.\",\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More\\ninfo: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"description\": \"A PVC spec to be used by the VMAlertManager StatefulSets.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"EmbeddedMetadata contains metadata relevant to an EmbeddedResource.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"Status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"staticScrapeNamespaceSelector\": {\n \"description\": \"StaticScrapeNamespaceSelector defines Namespaces to be selected for VMStaticScrape discovery.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"staticScrapeRelabelTemplate\": {\n \"description\": \"StaticScrapeRelabelTemplate defines relabel config, that will be added to each VMStaticScrape.\\nit's useful for adding specific labels to all targets\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"staticScrapeSelector\": {\n \"description\": \"StaticScrapeSelector defines PodScrapes to be selected for target discovery.\\nWorks in combination with NamespaceSelector.\\nIf both nil - match everything.\\nNamespaceSelector nil - only objects at VMAgent namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"streamAggrConfig\": {\n \"description\": \"StreamAggrConfig defines global stream aggregation configuration for VMAgent\",\n \"properties\": {\n \"configmap\": {\n \"description\": \"ConfigMap with stream aggregation rules\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dedupInterval\": {\n \"description\": \"Allows setting different de-duplication intervals per each configured remote storage\",\n \"type\": \"string\"\n },\n \"dropInput\": {\n \"description\": \"Allow drop all the input samples after the aggregation\",\n \"type\": \"boolean\"\n },\n \"dropInputLabels\": {\n \"description\": \"labels to drop from samples for aggregator before stream de-duplication and aggregation\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreFirstIntervals\": {\n \"type\": \"integer\"\n },\n \"ignoreOldSamples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"keepInput\": {\n \"description\": \"Allows writing both raw and aggregate data\",\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"description\": \"Stream aggregation rules\",\n \"items\": {\n \"description\": \"StreamAggrRule defines the rule in stream aggregation config\",\n \"properties\": {\n \"by\": {\n \"description\": \"By is an optional list of labels for grouping input series.\\n\\n\\nSee also Without.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dedup_interval\": {\n \"description\": \"DedupInterval is an optional interval for deduplication.\",\n \"type\": \"string\"\n },\n \"drop_input_labels\": {\n \"description\": \"DropInputLabels is an optional list with labels, which must be dropped before further processing of input samples.\\n\\n\\nLabels are dropped before de-duplication and aggregation.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"flush_on_shutdown\": {\n \"description\": \"FlushOnShutdown defines whether to flush the aggregation state on process termination\\nor config reload. Is `false` by default.\\nIt is not recommended changing this setting, unless unfinished aggregations states\\nare preferred to missing data points.\",\n \"type\": \"boolean\"\n },\n \"ignore_first_intervals\": {\n \"type\": \"integer\"\n },\n \"ignore_old_samples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"input_relabel_configs\": {\n \"description\": \"InputRelabelConfigs is an optional relabeling rules, which are applied on the input\\nbefore aggregation.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"description\": \"Interval is the interval between aggregations.\",\n \"type\": \"string\"\n },\n \"keep_metric_names\": {\n \"description\": \"KeepMetricNames instructs to leave metric names as is for the output time series without adding any suffix.\",\n \"type\": \"boolean\"\n },\n \"match\": {\n \"description\": \"Match is a label selector (or list of label selectors) for filtering time series for the given selector.\\n\\n\\nIf the match isn't set, then all the input time series are processed.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"no_align_flush_to_interval\": {\n \"description\": \"NoAlignFlushToInterval disables aligning of flushes to multiples of Interval.\\nBy default flushes are aligned to Interval.\",\n \"type\": \"boolean\"\n },\n \"output_relabel_configs\": {\n \"description\": \"OutputRelabelConfigs is an optional relabeling rules, which are applied\\non the aggregated output before being sent to remote storage.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"outputs\": {\n \"description\": \"Outputs is a list of output aggregate functions to produce.\\n\\n\\nThe following names are allowed:\\n\\n\\n- total - aggregates input counters\\n- increase - counts the increase over input counters\\n- count_series - counts the input series\\n- count_samples - counts the input samples\\n- sum_samples - sums the input samples\\n- last - the last biggest sample value\\n- min - the minimum sample value\\n- max - the maximum sample value\\n- avg - the average value across all the samples\\n- stddev - standard deviation across all the samples\\n- stdvar - standard variance across all the samples\\n- histogram_bucket - creates VictoriaMetrics histogram for input samples\\n- quantiles(phi1, ..., phiN) - quantiles' estimation for phi in the range [0..1]\\n\\n\\nThe output time series will have the following names:\\n\\n\\n input_name:aggr_\\u003cinterval\\u003e_\\u003coutput\\u003e\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"staleness_interval\": {\n \"description\": \"Staleness interval is interval after which the series state will be reset if no samples have been sent during it.\\nThe parameter is only relevant for outputs: total, total_prometheus, increase, increase_prometheus and histogram_bucket.\",\n \"type\": \"string\"\n },\n \"without\": {\n \"description\": \"Without is an optional list of labels, which must be excluded when grouping input series.\\n\\n\\nSee also By.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"interval\",\n \"outputs\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"updateStrategy\": {\n \"description\": \"UpdateStrategy - overrides default update strategy.\\nworks only for deployments, statefulset always use OnDelete.\",\n \"enum\": [\n \"Recreate\",\n \"RollingUpdate\"\n ],\n \"type\": \"string\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"vmAgentExternalLabelName\": {\n \"description\": \"VMAgentExternalLabelName Name of vmAgent external label used to denote vmAgent instance\\nname. Defaults to the value of `prometheus`. External label will\\n_not_ be added when value is set to empty string (`\\\"\\\"`).\",\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output deploy definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the vmagent container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output deploy definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"remoteWrite\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Agent\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Agent", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlert.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlert.json new file mode 100644 index 00000000000..b66bc525941 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlert.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMAlert", + "schema": "{\n \"description\": \"VMAlert executes a list of given alerting or recording rules against configured address.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMAlertSpec defines the desired state of VMAlert\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMAlert\\nobject, which shall be mounted into the VMAlert Pods.\\nThe ConfigMaps are mounted into /etc/vm/configs/\\u003cconfigmap-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configReloaderExtraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ConfigReloaderExtraArgs that will be passed to VMAuths config-reloader container\\nfor example resyncInterval: \\\"30s\\\"\",\n \"type\": \"object\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"datasource\": {\n \"description\": \"Datasource Victoria Metrics or VMSelect url. Required parameter. e.g. http://127.0.0.1:8428\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"Path to bearer token file\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName:headerValue\\nvmalert supports it since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines OAuth2 configuration\",\n \"format\": \"textarea\",\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"Victoria Metrics or VMSelect url. Required parameter. E.g. http://127.0.0.1:8428\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"enforcedNamespaceLabel\": {\n \"description\": \"EnforcedNamespaceLabel enforces adding a namespace label of origin for each alert\\nand metric that is user created. The label value will always be the namespace of the object that is\\nbeing created.\",\n \"type\": \"string\"\n },\n \"evaluationInterval\": {\n \"description\": \"EvaluationInterval defines how often to evaluate rules by default\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"externalLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExternalLabels in the form 'name: value' to add to all generated recording rules and alerts.\",\n \"type\": \"object\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VMAlert pod\\nfor example -remoteWrite.tmpDataPath=/tmp\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMAlert pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMAlert\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VMAlert configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"license\": {\n \"description\": \"License allows to configure license key to be used for enterprise features.\\nUsing license key is supported starting from VictoriaMetrics v1.94.0.\\nSee [here](https://docs.victoriametrics.com/enterprise)\",\n \"properties\": {\n \"key\": {\n \"description\": \"Enterprise license key. This flag is available only in [VictoriaMetrics enterprise](https://docs.victoriametrics.com/enterprise).\\nTo request a trial license, [go to](https://victoriametrics.com/products/enterprise/trial)\",\n \"type\": \"string\"\n },\n \"keyRef\": {\n \"description\": \"KeyRef is reference to secret with license key for enterprise features.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMAlert to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMAlert to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"notifier\": {\n \"description\": \"Notifier prometheus alertmanager endpoint spec. Required at least one of notifier or notifiers when there are alerting rules. e.g. http://127.0.0.1:9093\\nIf specified both notifier and notifiers, notifier will be added as last element to notifiers.\\nonly one of notifier options could be chosen: notifierConfigRef or notifiers + notifier\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"Path to bearer token file\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName:headerValue\\nvmalert supports it since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines OAuth2 configuration\",\n \"format\": \"textarea\",\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"string\"\n },\n \"selector\": {\n \"description\": \"Selector allows service discovery for alertmanager\\nin this case all matched vmalertmanager replicas will be added into vmalert notifier.url\\nas statefulset pod.fqdn\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label selector is a label query over a set of resources. The result of matchLabels and\\nmatchExpressions are ANDed. An empty label selector matches all objects. A null\\nlabel selector matches no objects.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"NamespaceSelector is a selector for selecting either all namespaces or a\\nlist of namespaces.\",\n \"properties\": {\n \"any\": {\n \"description\": \"Boolean describing whether all namespaces are selected in contrast to a\\nlist restricting them.\",\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"description\": \"List of namespace names.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"AlertManager url. E.g. http://127.0.0.1:9093\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"notifierConfigRef\": {\n \"description\": \"NotifierConfigRef reference for secret with notifier configuration for vmalert\\nonly one of notifier options could be chosen: notifierConfigRef or notifiers + notifier\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"notifiers\": {\n \"description\": \"Notifiers prometheus alertmanager endpoints. Required at least one of notifier or notifiers when there are alerting rules. e.g. http://127.0.0.1:9093\\nIf specified both notifier and notifiers, notifier will be added as last element to notifiers.\\nonly one of notifier options could be chosen: notifierConfigRef or notifiers + notifier\",\n \"items\": {\n \"description\": \"VMAlertNotifierSpec defines the notifier url for sending information about alerts\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"Path to bearer token file\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName:headerValue\\nvmalert supports it since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines OAuth2 configuration\",\n \"format\": \"textarea\",\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"string\"\n },\n \"selector\": {\n \"description\": \"Selector allows service discovery for alertmanager\\nin this case all matched vmalertmanager replicas will be added into vmalert notifier.url\\nas statefulset pod.fqdn\",\n \"properties\": {\n \"labelSelector\": {\n \"description\": \"A label selector is a label query over a set of resources. The result of matchLabels and\\nmatchExpressions are ANDed. An empty label selector matches all objects. A null\\nlabel selector matches no objects.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"namespaceSelector\": {\n \"description\": \"NamespaceSelector is a selector for selecting either all namespaces or a\\nlist of namespaces.\",\n \"properties\": {\n \"any\": {\n \"description\": \"Boolean describing whether all namespaces are selected in contrast to a\\nlist restricting them.\",\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"description\": \"List of namespace names.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"AlertManager url. E.g. http://127.0.0.1:9093\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMAlert pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port for listen\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"Priority class assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"remoteRead\": {\n \"description\": \"RemoteRead Optional URL to read vmalert state (persisted via RemoteWrite)\\nThis configuration only makes sense if alerts state has been successfully\\npersisted (via RemoteWrite) before.\\nsee -remoteRead.url docs in vmalerts for details.\\nE.g. http://127.0.0.1:8428\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"Path to bearer token file\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName:headerValue\\nvmalert supports it since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"lookback\": {\n \"description\": \"Lookback defines how far to look into past for alerts timeseries. For example, if lookback=1h then range from now() to now()-1h will be scanned. (default 1h0m0s)\\nApplied only to RemoteReadSpec\",\n \"type\": \"string\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines OAuth2 configuration\",\n \"format\": \"textarea\",\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"URL of the endpoint to send samples to.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"remoteWrite\": {\n \"description\": \"RemoteWrite Optional URL to remote-write compatible storage to persist\\nvmalert state and rule results to.\\nRule results will be persisted according to each rule.\\nAlerts state will be persisted in the form of time series named ALERTS and ALERTS_FOR_STATE\\nsee -remoteWrite.url docs in vmalerts for details.\\nE.g. http://127.0.0.1:8428\",\n \"properties\": {\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"Path to bearer token file\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Optional bearer auth token to use for -remoteWrite.url\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"concurrency\": {\n \"description\": \"Defines number of readers that concurrently write into remote storage (default 1)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"flushInterval\": {\n \"description\": \"Defines interval of flushes to remote write endpoint (default 5s)\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"headers\": {\n \"description\": \"Headers allow configuring custom http headers\\nMust be in form of semicolon separated header with value\\ne.g.\\nheaderName:headerValue\\nvmalert supports it since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"maxBatchSize\": {\n \"description\": \"Defines defines max number of timeseries to be flushed at once (default 1000)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"maxQueueSize\": {\n \"description\": \"Defines the max number of pending datapoints to remote write endpoint (default 100000)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines OAuth2 configuration\",\n \"format\": \"textarea\",\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"URL of the endpoint to send samples to.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMAlert cluster. The controller will\\neventually make the size of the running cluster equal to the expected\\nsize.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdate\": {\n \"description\": \"RollingUpdate - overrides deployment update params.\",\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be scheduled above the desired number of\\npods.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nThis can not be 0 if MaxUnavailable is 0.\\nAbsolute number is calculated from percentage by rounding up.\\nDefaults to 25%.\\nExample: when this is set to 30%, the new ReplicaSet can be scaled up immediately when\\nthe rolling update starts, such that the total number of old and new pods do not exceed\\n130% of desired pods. Once old pods have been killed,\\nnew ReplicaSet can be scaled up further, ensuring that total number of pods running\\nat any time during the update is at most 130% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be unavailable during the update.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nAbsolute number is calculated from percentage by rounding down.\\nThis can not be 0 if MaxSurge is 0.\\nDefaults to 25%.\\nExample: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods\\nimmediately when the rolling update starts. Once new pods are ready, old ReplicaSet\\ncan be scaled down further, followed by scaling up the new ReplicaSet, ensuring\\nthat the total number of pods available at all times during the update is at\\nleast 70% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"ruleNamespaceSelector\": {\n \"description\": \"RuleNamespaceSelector to be selected for VMRules discovery.\\nWorks in combination with Selector.\\nIf both nil - behaviour controlled by selectAllByDefault\\nNamespaceSelector nil - only objects at VMAlert namespace.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"rulePath\": {\n \"description\": \"RulePath to the file with alert rules.\\nSupports patterns. Flag can be specified multiple times.\\nExamples:\\n-rule /path/to/file. Path to a single file with alerting rules\\n-rule dir/*.yaml -rule /*.yaml. Relative path to all .yaml files in folder,\\nabsolute path to all .yaml files in root.\\nby default operator adds /etc/vmalert/configs/base/vmalert.yaml\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ruleSelector\": {\n \"description\": \"RuleSelector selector to select which VMRules to mount for loading alerting\\nrules from.\\nWorks in combination with NamespaceSelector.\\nIf both nil - behaviour controlled by selectAllByDefault\\nNamespaceSelector nil - only objects at VMAlert namespace.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMAlert\\nobject, which shall be mounted into the VMAlert Pods.\\nThe Secrets are mounted into /etc/vm/secrets/\\u003csecret-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"selectAllByDefault\": {\n \"description\": \"SelectAllByDefault changes default behavior for empty CRD selectors, such RuleSelector.\\nwith selectAllByDefault: true and empty serviceScrapeSelector and RuleNamespaceSelector\\nOperator selects all exist serviceScrapes\\nwith selectAllByDefault: false - selects nothing\",\n \"type\": \"boolean\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVMAlert Pods.\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmalert VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmalert service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"updateStrategy\": {\n \"description\": \"UpdateStrategy - overrides default update strategy.\",\n \"enum\": [\n \"Recreate\",\n \"RollingUpdate\"\n ],\n \"type\": \"string\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMAlert container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output Deployment definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"datasource\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Alert\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Alert", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanager.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanager.json new file mode 100644 index 00000000000..f291e22f9c6 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanager.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMAlertmanager", + "schema": "{\n \"description\": \"VMAlertmanager represents Victoria-Metrics deployment for Alertmanager.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"Specification of the desired behavior of the VMAlertmanager cluster. More info:\\nhttps://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status\",\n \"properties\": {\n \"additionalPeers\": {\n \"description\": \"AdditionalPeers allows injecting a set of additional Alertmanagers to peer with to form a highly available cluster.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"claimTemplates\": {\n \"description\": \"ClaimTemplates allows adding additional VolumeClaimTemplates for StatefulSet\",\n \"items\": {\n \"description\": \"PersistentVolumeClaim is a user's request for and claim to a persistent volume\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clusterAdvertiseAddress\": {\n \"description\": \"ClusterAdvertiseAddress is the explicit address to advertise in cluster.\\nNeeds to be provided for non RFC1918 [1] (public) addresses.\\n[1] RFC1918: https://tools.ietf.org/html/rfc1918\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMAlertmanager\\nobject, which shall be mounted into the VMAlertmanager Pods.\\nThe ConfigMaps are mounted into /etc/vm/configs/\\u003cconfigmap-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configNamespaceSelector\": {\n \"description\": \" ConfigNamespaceSelector defines namespace selector for VMAlertmanagerConfig.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAlertmanager namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"configRawYaml\": {\n \"description\": \"ConfigRawYaml - raw configuration for alertmanager,\\nit helps it to start without secret.\\npriority -\\u003e hardcoded ConfigRaw -\\u003e ConfigRaw, provided by user -\\u003e ConfigSecret.\",\n \"type\": \"string\"\n },\n \"configReloaderExtraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ConfigReloaderExtraArgs that will be passed to VMAuths config-reloader container\\nfor example resyncInterval: \\\"30s\\\"\",\n \"type\": \"object\"\n },\n \"configSecret\": {\n \"description\": \"ConfigSecret is the name of a Kubernetes Secret in the same namespace as the\\nVMAlertmanager object, which contains configuration for this VMAlertmanager,\\nconfiguration must be inside secret key: alertmanager.yaml.\\nIt must be created by user.\\ninstance. Defaults to 'vmalertmanager-\\u003calertmanager-name\\u003e'\\nThe secret is mounted into /etc/alertmanager/config.\",\n \"type\": \"string\"\n },\n \"configSelector\": {\n \"description\": \"ConfigSelector defines selector for VMAlertmanagerConfig, result config will be merged with with Raw or Secret config.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAlertmanager namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"containers\": {\n \"description\": \"Containers allows injecting additional containers or patching existing containers.\\nThis is meant to allow adding an authentication proxy to an VMAlertmanager pod.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disableNamespaceMatcher\": {\n \"description\": \"DisableNamespaceMatcher disables namespace label matcher for VMAlertmanagerConfig\\nIt may be useful if alert doesn't have namespace label for some reason\",\n \"type\": \"boolean\"\n },\n \"disableRouteContinueEnforce\": {\n \"description\": \"DisableRouteContinueEnforce cancel the behavior for VMAlertmanagerConfig that always enforce first-level route continue to true\",\n \"type\": \"boolean\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"externalURL\": {\n \"description\": \"ExternalURL the VMAlertmanager instances will be available under. This is\\nnecessary to generate correct URLs. This is necessary if VMAlertmanager is not\\nserved from root of a DNS name.\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VMAlertmanager pod\\nfor example log.level: debug\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMAlertmanager pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"gossipConfig\": {\n \"description\": \"GossipConfig defines gossip TLS configuration for Alertmanager cluster\",\n \"properties\": {\n \"tls_client_config\": {\n \"description\": \"TLSClientConfig defines client TLS configuration for alertmanager\",\n \"properties\": {\n \"ca_file\": {\n \"description\": \"CAFile defines path to the pre-mounted file with CA\\nmutually exclusive with CASecretRef\",\n \"type\": \"string\"\n },\n \"ca_secret_ref\": {\n \"description\": \"CA defines reference for secret with CA content under given key\\nmutually exclusive with CAFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"cert_file\": {\n \"description\": \"CertFile defines path to the pre-mounted file with certificate\\nmutually exclusive with CertSecretRef\",\n \"type\": \"string\"\n },\n \"cert_secret_ref\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"insecure_skip_verify\": {\n \"description\": \"Cert defines reference for secret with CA content under given key\\nmutually exclusive with CertFile\",\n \"type\": \"boolean\"\n },\n \"key_file\": {\n \"description\": \"KeyFile defines path to the pre-mounted file with certificate key\\nmutually exclusive with KeySecretRef\",\n \"type\": \"string\"\n },\n \"key_secret_ref\": {\n \"description\": \"Key defines reference for secret with certificate key content under given key\\nmutually exclusive with KeyFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"server_name\": {\n \"description\": \"ServerName indicates a name of a server\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tls_server_config\": {\n \"description\": \"TLSServerConfig defines server TLS configuration for alertmanager\",\n \"properties\": {\n \"cert_file\": {\n \"description\": \"CertFile defines path to the pre-mounted file with certificate\\nmutually exclusive with CertSecretRef\",\n \"type\": \"string\"\n },\n \"cert_secret_ref\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"cipher_suites\": {\n \"description\": \"CipherSuites defines list of supported cipher suites for TLS versions up to TLS 1.2\\nhttps://golang.org/pkg/crypto/tls/#pkg-constants\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"client_auth_type\": {\n \"description\": \"Cert defines reference for secret with CA content under given key\\nmutually exclusive with CertFile\\nClientAuthType defines server policy for client authentication\\nIf you want to enable client authentication (aka mTLS), you need to use RequireAndVerifyClientCert\\nNote, mTLS is supported only at enterprise version of VictoriaMetrics components\",\n \"enum\": [\n \"NoClientCert\",\n \"RequireAndVerifyClientCert\"\n ],\n \"type\": \"string\"\n },\n \"client_ca_file\": {\n \"description\": \"ClientCAFile defines path to the pre-mounted file with CA\\nmutually exclusive with ClientCASecretRef\",\n \"type\": \"string\"\n },\n \"client_ca_secret_ref\": {\n \"description\": \"ClientCASecretRef defines reference for secret with CA content under given key\\nmutually exclusive with ClientCAFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"curve_preferences\": {\n \"description\": \"CurvePreferences defines elliptic curves that will be used in an ECDHE handshake, in preference order.\\nhttps://golang.org/pkg/crypto/tls/#CurveID\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"key_file\": {\n \"description\": \"KeyFile defines path to the pre-mounted file with certificate key\\nmutually exclusive with KeySecretRef\",\n \"type\": \"string\"\n },\n \"key_secret_ref\": {\n \"description\": \"Key defines reference for secret with certificate key content under given key\\nmutually exclusive with KeyFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"max_version\": {\n \"description\": \"MaxVersion maximum TLS version that is acceptable.\",\n \"enum\": [\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"min_version\": {\n \"description\": \"MinVersion minimum TLS version that is acceptable.\",\n \"enum\": [\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"prefer_server_cipher_suites\": {\n \"description\": \"PreferServerCipherSuites controls whether the server selects the\\nclient's most preferred ciphersuite\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMAlertmanager\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VMAlertmanager configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"listenLocal\": {\n \"description\": \"ListenLocal makes the VMAlertmanager server listen on loopback, so that it\\ndoes not bind against the Pod IP. Note this is only for the VMAlertmanager\\nUI, not the gossip communication.\",\n \"type\": \"boolean\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMAlertmanager to be configured with.\",\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"Log level for VMAlertmanager to be configured with.\",\n \"type\": \"string\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the alertmanager pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port for listen\",\n \"type\": \"string\"\n },\n \"portName\": {\n \"description\": \"PortName used for the pods and governing service.\\nThis defaults to web\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"PriorityClassName class assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount Size is the expected size of the alertmanager cluster. The controller will\\neventually make the size of the running cluster equal to the expected\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits,\\nhttps://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retention\": {\n \"description\": \"Retention Time duration VMAlertmanager shall retain data for. Default is '120h',\\nand must match the regular expression `[0-9]+(ms|s|m|h)` (milliseconds seconds minutes hours).\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdateStrategy\": {\n \"description\": \"RollingUpdateStrategy defines strategy for application updates\\nDefault is OnDelete, in this case operator handles update process\\nCan be changed for RollingUpdate\",\n \"type\": \"string\"\n },\n \"routePrefix\": {\n \"description\": \"RoutePrefix VMAlertmanager registers HTTP handlers for. This is useful,\\nif using ExternalURL and a proxy is rewriting HTTP routes of a request,\\nand the actual ExternalURL is still true, but the server serves requests\\nunder a different route prefix. For example for use with `kubectl proxy`.\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMAlertmanager\\nobject, which shall be mounted into the VMAlertmanager Pods.\\nThe Secrets are mounted into /etc/vm/secrets/\\u003csecret-name\\u003e\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"selectAllByDefault\": {\n \"description\": \"SelectAllByDefault changes default behavior for empty CRD selectors, such ConfigSelector.\\nwith selectAllByDefault: true and undefined ConfigSelector and ConfigNamespaceSelector\\nOperator selects all exist alertManagerConfigs\\nwith selectAllByDefault: false - selects nothing\",\n \"type\": \"boolean\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmalertmanager VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmalertmanager service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"storage\": {\n \"description\": \"Storage is the definition of how storage will be used by the VMAlertmanager\\ninstances.\",\n \"properties\": {\n \"disableMountSubPath\": {\n \"description\": \"Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary.\\nDisableMountSubPath allows to remove any subPath usage in volume mounts.\",\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More\\ninfo: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"description\": \"A PVC spec to be used by the VMAlertManager StatefulSets.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"EmbeddedMetadata contains metadata relevant to an EmbeddedResource.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"Status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"templates\": {\n \"description\": \"Templates is a list of ConfigMap key references for ConfigMaps in the same namespace as the VMAlertmanager\\nobject, which shall be mounted into the VMAlertmanager Pods.\\nThe Templates are mounted into /etc/vm/templates/\\u003cconfigmap-name\\u003e/\\u003cconfigmap-key\\u003e.\",\n \"items\": {\n \"description\": \"ConfigMapKeyReference refers to a key in a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The ConfigMap key to refer to.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output StatefulSet definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the alertmanager container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output StatefulSet definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"webConfig\": {\n \"description\": \"WebConfig defines configuration for webserver\\nhttps://github.com/prometheus/alertmanager/blob/main/docs/https.md\",\n \"properties\": {\n \"basic_auth_users\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"BasicAuthUsers Usernames and hashed passwords that have full access to the web server\\nPasswords must be hashed with bcrypt\",\n \"type\": \"object\"\n },\n \"http_server_config\": {\n \"description\": \"HTTPServerConfig defines http server configuration for alertmanager web server\",\n \"properties\": {\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Headers defines list of headers that can be added to HTTP responses.\",\n \"type\": \"object\"\n },\n \"http2\": {\n \"description\": \"HTTP2 enables HTTP/2 support. Note that HTTP/2 is only supported with TLS.\\nThis can not be changed on the fly.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"tls_server_config\": {\n \"description\": \"TLSServerConfig defines server TLS configuration for alertmanager\",\n \"properties\": {\n \"cert_file\": {\n \"description\": \"CertFile defines path to the pre-mounted file with certificate\\nmutually exclusive with CertSecretRef\",\n \"type\": \"string\"\n },\n \"cert_secret_ref\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"cipher_suites\": {\n \"description\": \"CipherSuites defines list of supported cipher suites for TLS versions up to TLS 1.2\\nhttps://golang.org/pkg/crypto/tls/#pkg-constants\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"client_auth_type\": {\n \"description\": \"Cert defines reference for secret with CA content under given key\\nmutually exclusive with CertFile\\nClientAuthType defines server policy for client authentication\\nIf you want to enable client authentication (aka mTLS), you need to use RequireAndVerifyClientCert\\nNote, mTLS is supported only at enterprise version of VictoriaMetrics components\",\n \"enum\": [\n \"NoClientCert\",\n \"RequireAndVerifyClientCert\"\n ],\n \"type\": \"string\"\n },\n \"client_ca_file\": {\n \"description\": \"ClientCAFile defines path to the pre-mounted file with CA\\nmutually exclusive with ClientCASecretRef\",\n \"type\": \"string\"\n },\n \"client_ca_secret_ref\": {\n \"description\": \"ClientCASecretRef defines reference for secret with CA content under given key\\nmutually exclusive with ClientCAFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"curve_preferences\": {\n \"description\": \"CurvePreferences defines elliptic curves that will be used in an ECDHE handshake, in preference order.\\nhttps://golang.org/pkg/crypto/tls/#CurveID\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"key_file\": {\n \"description\": \"KeyFile defines path to the pre-mounted file with certificate key\\nmutually exclusive with KeySecretRef\",\n \"type\": \"string\"\n },\n \"key_secret_ref\": {\n \"description\": \"Key defines reference for secret with certificate key content under given key\\nmutually exclusive with KeyFile\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"max_version\": {\n \"description\": \"MaxVersion maximum TLS version that is acceptable.\",\n \"enum\": [\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"min_version\": {\n \"description\": \"MinVersion minimum TLS version that is acceptable.\",\n \"enum\": [\n \"TLS10\",\n \"TLS11\",\n \"TLS12\",\n \"TLS13\"\n ],\n \"type\": \"string\"\n },\n \"prefer_server_cipher_suites\": {\n \"description\": \"PreferServerCipherSuites controls whether the server selects the\\nclient's most preferred ciphersuite\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"VM Alertmanager\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Alertmanager", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanagerConfig.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanagerConfig.json new file mode 100644 index 00000000000..268a2c358d1 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAlertmanagerConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMAlertmanagerConfig", + "schema": "{\n \"description\": \"VMAlertmanagerConfig is the Schema for the vmalertmanagerconfigs API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMAlertmanagerConfigSpec defines configuration for VMAlertmanagerConfig\\nit must reference only locally defined objects\",\n \"properties\": {\n \"inhibit_rules\": {\n \"description\": \"InhibitRules will only apply for alerts matching\\nthe resource's namespace.\",\n \"items\": {\n \"description\": \"InhibitRule defines an inhibition rule that allows to mute alerts when other\\nalerts are already firing.\\nNote, it doesn't support deprecated alertmanager config options.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#inhibit_rule\",\n \"properties\": {\n \"equal\": {\n \"description\": \"Labels that must have an equal value in the source and target alert for\\nthe inhibition to take effect.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_matchers\": {\n \"description\": \"SourceMatchers defines a list of matchers for which one or more alerts have\\nto exist for the inhibition to take effect.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"target_matchers\": {\n \"description\": \"TargetMatchers defines a list of matchers that have to be fulfilled by the target\\nalerts to be muted.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"receivers\": {\n \"description\": \"Receivers defines alert receivers\",\n \"items\": {\n \"description\": \"Receiver defines one or more notification integrations.\",\n \"properties\": {\n \"discord_configs\": {\n \"items\": {\n \"properties\": {\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"message\": {\n \"description\": \"The message body template\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"title\": {\n \"description\": \"The message title template\",\n \"type\": \"string\"\n },\n \"webhook_url\": {\n \"description\": \"The discord webhook URL\\none of `urlSecret` and `url` must be defined.\",\n \"type\": \"string\"\n },\n \"webhook_url_secret\": {\n \"description\": \"URLSecret defines secret name and key at the CRD namespace.\\nIt must contain the webhook URL.\\none of `urlSecret` and `url` must be defined.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"email_configs\": {\n \"description\": \"EmailConfigs defines email notification configurations.\",\n \"items\": {\n \"description\": \"EmailConfig configures notifications via Email.\",\n \"properties\": {\n \"auth_identity\": {\n \"description\": \"The identity to use for authentication.\",\n \"type\": \"string\"\n },\n \"auth_password\": {\n \"description\": \"AuthPassword defines secret name and key at CRD namespace.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"auth_secret\": {\n \"description\": \"AuthSecret defines secrent name and key at CRD namespace.\\nIt must contain the CRAM-MD5 secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"auth_username\": {\n \"description\": \"The username to use for authentication.\",\n \"type\": \"string\"\n },\n \"from\": {\n \"description\": \"The sender address.\\nfallback to global setting if empty\",\n \"type\": \"string\"\n },\n \"headers\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Further headers email header key/value pairs. Overrides any headers\\npreviously set by the notification implementation.\",\n \"type\": \"object\"\n },\n \"hello\": {\n \"description\": \"The hostname to identify to the SMTP server.\",\n \"type\": \"string\"\n },\n \"html\": {\n \"description\": \"The HTML body of the email notification.\",\n \"type\": \"string\"\n },\n \"require_tls\": {\n \"description\": \"The SMTP TLS requirement.\\nNote that Go does not support unencrypted connections to remote SMTP endpoints.\",\n \"type\": \"boolean\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"smarthost\": {\n \"description\": \"The SMTP host through which emails are sent.\\nfallback to global setting if empty\",\n \"type\": \"string\"\n },\n \"text\": {\n \"description\": \"The text body of the email notification.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"to\": {\n \"description\": \"The email address to send notifications to.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"msteams_configs\": {\n \"items\": {\n \"properties\": {\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"text\": {\n \"description\": \"The text body of the teams notification.\",\n \"type\": \"string\"\n },\n \"title\": {\n \"description\": \"The title of the teams notification.\",\n \"type\": \"string\"\n },\n \"webhook_url\": {\n \"description\": \"The incoming webhook URL\\none of `urlSecret` and `url` must be defined.\",\n \"type\": \"string\"\n },\n \"webhook_url_secret\": {\n \"description\": \"URLSecret defines secret name and key at the CRD namespace.\\nIt must contain the webhook URL.\\none of `urlSecret` and `url` must be defined.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Name of the receiver. Must be unique across all items from the list.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"opsgenie_configs\": {\n \"description\": \"OpsGenieConfigs defines ops genie notification configurations.\",\n \"items\": {\n \"description\": \"OpsGenieConfig configures notifications via OpsGenie.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#opsgenie_config\",\n \"properties\": {\n \"actions\": {\n \"description\": \"Comma separated list of actions that will be available for the alert.\",\n \"type\": \"string\"\n },\n \"apiURL\": {\n \"description\": \"The URL to send OpsGenie API requests to.\",\n \"type\": \"string\"\n },\n \"api_key\": {\n \"description\": \"The secret's key that contains the OpsGenie API key.\\nIt must be at them same namespace as CRD\\nfallback to global setting if empty\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"description\": {\n \"description\": \"Description of the incident.\",\n \"type\": \"string\"\n },\n \"details\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"A set of arbitrary key/value pairs that provide further detail about the incident.\",\n \"type\": \"object\"\n },\n \"entity\": {\n \"description\": \"Optional field that can be used to specify which domain alert is related to.\",\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Alert text limited to 130 characters.\",\n \"type\": \"string\"\n },\n \"note\": {\n \"description\": \"Additional alert note.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"Priority level of alert. Possible values are P1, P2, P3, P4, and P5.\",\n \"type\": \"string\"\n },\n \"responders\": {\n \"description\": \"List of responders responsible for notifications.\",\n \"items\": {\n \"description\": \"OpsGenieConfigResponder defines a responder to an incident.\\nOne of `id`, `name` or `username` has to be defined.\",\n \"properties\": {\n \"id\": {\n \"description\": \"ID of the responder.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name of the responder.\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of responder.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username of the responder.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"source\": {\n \"description\": \"Backlink to the sender of the notification.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"Comma separated list of tags attached to the notifications.\",\n \"type\": \"string\"\n },\n \"update_alerts\": {\n \"description\": \"Whether to update message and description of the alert in OpsGenie if it already exists\\nBy default, the alert is never updated in OpsGenie, the new message only appears in activity log.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"pagerduty_configs\": {\n \"description\": \"PagerDutyConfigs defines pager duty notification configurations.\",\n \"items\": {\n \"description\": \"PagerDutyConfig configures notifications via PagerDuty.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#pagerduty_config\",\n \"properties\": {\n \"class\": {\n \"description\": \"The class/type of the event.\",\n \"type\": \"string\"\n },\n \"client\": {\n \"description\": \"Client identification.\",\n \"type\": \"string\"\n },\n \"client_url\": {\n \"description\": \"Backlink to the sender of notification.\",\n \"type\": \"string\"\n },\n \"component\": {\n \"description\": \"The part or component of the affected system that is broken.\",\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Description of the incident.\",\n \"type\": \"string\"\n },\n \"details\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Arbitrary key/value pairs that provide further detail about the incident.\",\n \"type\": \"object\"\n },\n \"group\": {\n \"description\": \"A cluster or grouping of sources.\",\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"images\": {\n \"description\": \"Images to attach to the incident.\",\n \"items\": {\n \"description\": \"ImageConfig is used to attach images to the incident.\\nSee https://developer.pagerduty.com/docs/ZG9jOjExMDI5NTgx-send-an-alert-event#the-images-property\\nfor more information.\",\n \"properties\": {\n \"alt\": {\n \"type\": \"string\"\n },\n \"href\": {\n \"type\": \"string\"\n },\n \"source\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"source\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"links\": {\n \"description\": \"Links to attach to the incident.\",\n \"items\": {\n \"description\": \"LinkConfig is used to attach text links to the incident.\\nSee https://developer.pagerduty.com/docs/ZG9jOjExMDI5NTgx-send-an-alert-event#the-links-property\\nfor more information.\",\n \"properties\": {\n \"href\": {\n \"type\": \"string\"\n },\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"href\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"routing_key\": {\n \"description\": \"The secret's key that contains the PagerDuty integration key (when using\\nEvents API v2). Either this field or `serviceKey` needs to be defined.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"service_key\": {\n \"description\": \"The secret's key that contains the PagerDuty service key (when using\\nintegration type \\\"Prometheus\\\"). Either this field or `routingKey` needs to\\nbe defined.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"severity\": {\n \"description\": \"Severity of the incident.\",\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"The URL to send requests to.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"pushover_configs\": {\n \"description\": \"PushoverConfigs defines push over notification configurations.\",\n \"items\": {\n \"description\": \"PushoverConfig configures notifications via Pushover.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#pushover_config\",\n \"properties\": {\n \"expire\": {\n \"description\": \"How long your notification will continue to be retried for, unless the user\\nacknowledges the notification.\",\n \"type\": \"string\"\n },\n \"html\": {\n \"description\": \"Whether notification message is HTML or plain text.\",\n \"type\": \"boolean\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Notification message.\",\n \"type\": \"string\"\n },\n \"priority\": {\n \"description\": \"Priority, see https://pushover.net/api#priority\",\n \"type\": \"string\"\n },\n \"retry\": {\n \"description\": \"How often the Pushover servers will send the same notification to the user.\\nMust be at least 30 seconds.\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"sound\": {\n \"description\": \"The name of one of the sounds supported by device clients to override the user's default sound choice\",\n \"type\": \"string\"\n },\n \"title\": {\n \"description\": \"Notification title.\",\n \"type\": \"string\"\n },\n \"token\": {\n \"description\": \"The secret's key that contains the registered application’s API token, see https://pushover.net/apps.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"url\": {\n \"description\": \"A supplementary URL shown alongside the message.\",\n \"type\": \"string\"\n },\n \"url_title\": {\n \"description\": \"A title for supplementary URL, otherwise just the URL is shown\",\n \"type\": \"string\"\n },\n \"user_key\": {\n \"description\": \"The secret's key that contains the recipient user’s user key.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"slack_configs\": {\n \"description\": \"SlackConfigs defines slack notification configurations.\",\n \"items\": {\n \"description\": \"SlackConfig configures notifications via Slack.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#slack_config\",\n \"properties\": {\n \"actions\": {\n \"description\": \"A list of Slack actions that are sent with each notification.\",\n \"items\": {\n \"description\": \"SlackAction configures a single Slack action that is sent with each\\nnotification.\\nSee https://api.slack.com/docs/message-attachments#action_fields and\\nhttps://api.slack.com/docs/message-buttons for more information.\",\n \"properties\": {\n \"confirm\": {\n \"description\": \"SlackConfirmationField protect users from destructive actions or\\nparticularly distinguished decisions by asking them to confirm their button\\nclick one more time.\\nSee https://api.slack.com/docs/interactive-message-field-guide#confirmation_fields\\nfor more information.\",\n \"properties\": {\n \"dismiss_text\": {\n \"type\": \"string\"\n },\n \"ok_text\": {\n \"type\": \"string\"\n },\n \"text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"title\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"text\"\n ],\n \"type\": \"object\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"style\": {\n \"type\": \"string\"\n },\n \"text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"type\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"url\": {\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"text\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"api_url\": {\n \"description\": \"The secret's key that contains the Slack webhook URL.\\nIt must be at them same namespace as CRD\\nfallback to global setting if empty\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"callback_id\": {\n \"type\": \"string\"\n },\n \"channel\": {\n \"description\": \"The channel or user to send notifications to.\",\n \"type\": \"string\"\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"fallback\": {\n \"type\": \"string\"\n },\n \"fields\": {\n \"description\": \"A list of Slack fields that are sent with each notification.\",\n \"items\": {\n \"description\": \"SlackField configures a single Slack field that is sent with each notification.\\nSee https://api.slack.com/docs/message-attachments#fields for more information.\",\n \"properties\": {\n \"short\": {\n \"type\": \"boolean\"\n },\n \"title\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"value\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"title\",\n \"value\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"footer\": {\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"icon_emoji\": {\n \"type\": \"string\"\n },\n \"icon_url\": {\n \"type\": \"string\"\n },\n \"image_url\": {\n \"type\": \"string\"\n },\n \"link_names\": {\n \"type\": \"boolean\"\n },\n \"mrkdwn_in\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"pretext\": {\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"short_fields\": {\n \"type\": \"boolean\"\n },\n \"text\": {\n \"type\": \"string\"\n },\n \"thumb_url\": {\n \"type\": \"string\"\n },\n \"title\": {\n \"type\": \"string\"\n },\n \"title_link\": {\n \"type\": \"string\"\n },\n \"username\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sns_configs\": {\n \"items\": {\n \"properties\": {\n \"api_url\": {\n \"description\": \"The api URL\",\n \"type\": \"string\"\n },\n \"attributes\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"SNS message attributes\",\n \"type\": \"object\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"message\": {\n \"description\": \"The message content of the SNS notification.\",\n \"type\": \"string\"\n },\n \"phone_number\": {\n \"description\": \"Phone number if message is delivered via SMS\\nSpecify this, topic_arn or target_arn\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"sigv4\": {\n \"description\": \"Configure the AWS Signature Verification 4 signing process\",\n \"properties\": {\n \"access_key\": {\n \"description\": \"The AWS API keys. Both access_key and secret_key must be supplied or both must be blank.\\nIf blank the environment variables `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` are used.\",\n \"type\": \"string\"\n },\n \"access_key_selector\": {\n \"description\": \"secret key selector to get the keys from a Kubernetes Secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"profile\": {\n \"description\": \"Named AWS profile used to authenticate\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"AWS region, if blank the region from the default credentials chain is used\",\n \"type\": \"string\"\n },\n \"role_arn\": {\n \"description\": \"AWS Role ARN, an alternative to using AWS API keys\",\n \"type\": \"string\"\n },\n \"secret_key_selector\": {\n \"description\": \"secret key selector to get the keys from a Kubernetes Secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"subject\": {\n \"description\": \"The subject line if message is delivered to an email endpoint.\",\n \"type\": \"string\"\n },\n \"target_arn\": {\n \"description\": \"Mobile platform endpoint ARN if message is delivered via mobile notifications\\nSpecify this, topic_arn or phone_number\",\n \"type\": \"string\"\n },\n \"topic_arn\": {\n \"description\": \"SNS topic ARN, either specify this, phone_number or target_arn\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"telegram_configs\": {\n \"items\": {\n \"description\": \"TelegramConfig configures notification via telegram\\nhttps://prometheus.io/docs/alerting/latest/configuration/#telegram_config\",\n \"properties\": {\n \"api_url\": {\n \"description\": \"APIUrl the Telegram API URL i.e. https://api.telegram.org.\",\n \"type\": \"string\"\n },\n \"bot_token\": {\n \"description\": \"BotToken token for the bot\\nhttps://core.telegram.org/bots/api\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"chat_id\": {\n \"description\": \"ChatID is ID of the chat where to send the messages.\",\n \"type\": \"integer\"\n },\n \"disable_notifications\": {\n \"description\": \"DisableNotifications\",\n \"type\": \"boolean\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Message is templated message\",\n \"type\": \"string\"\n },\n \"parse_mode\": {\n \"description\": \"ParseMode for telegram message,\\nsupported values are MarkdownV2, Markdown, Markdown and empty string for plain text.\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"bot_token\",\n \"chat_id\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"victorops_configs\": {\n \"description\": \"VictorOpsConfigs defines victor ops notification configurations.\",\n \"items\": {\n \"description\": \"VictorOpsConfig configures notifications via VictorOps.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#victorops_config\",\n \"properties\": {\n \"api_key\": {\n \"description\": \"The secret's key that contains the API key to use when talking to the VictorOps API.\\nIt must be at them same namespace as CRD\\nfallback to global setting if empty\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"api_url\": {\n \"description\": \"The VictorOps API URL.\",\n \"type\": \"string\"\n },\n \"custom_fields\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Adds optional custom fields\\nhttps://github.com/prometheus/alertmanager/blob/v0.24.0/config/notifiers.go#L537\",\n \"type\": \"object\"\n },\n \"entity_display_name\": {\n \"description\": \"Contains summary of the alerted problem.\",\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"The HTTP client's configuration.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"message_type\": {\n \"description\": \"Describes the behavior of the alert (CRITICAL, WARNING, INFO).\",\n \"type\": \"string\"\n },\n \"monitoring_tool\": {\n \"description\": \"The monitoring tool the state message is from.\",\n \"type\": \"string\"\n },\n \"routing_key\": {\n \"description\": \"A key used to map the alert to a team.\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"state_message\": {\n \"description\": \"Contains long explanation of the alerted problem.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"routing_key\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"webex_configs\": {\n \"items\": {\n \"properties\": {\n \"api_url\": {\n \"description\": \"The Webex Teams API URL, i.e. https://webexapis.com/v1/messages\",\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration. You must use this configuration to supply the bot token as part of the HTTP `Authorization` header.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"message\": {\n \"description\": \"The message body template\",\n \"type\": \"string\"\n },\n \"room_id\": {\n \"description\": \"The ID of the Webex Teams room where to send the messages\",\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"webhook_configs\": {\n \"description\": \"WebhookConfigs defines webhook notification configurations.\",\n \"items\": {\n \"description\": \"WebhookConfig configures notifications via a generic receiver supporting the webhook payload.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#webhook_config\",\n \"properties\": {\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"max_alerts\": {\n \"description\": \"Maximum number of alerts to be sent per webhook message. When 0, all alerts are included.\",\n \"format\": \"int32\",\n \"minimum\": 0,\n \"type\": \"integer\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"url\": {\n \"description\": \"URL to send requests to,\\none of `urlSecret` and `url` must be defined.\",\n \"type\": \"string\"\n },\n \"url_secret\": {\n \"description\": \"URLSecret defines secret name and key at the CRD namespace.\\nIt must contain the webhook URL.\\none of `urlSecret` and `url` must be defined.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"wechat_configs\": {\n \"description\": \"WeChatConfigs defines wechat notification configurations.\",\n \"items\": {\n \"description\": \"WeChatConfig configures notifications via WeChat.\\nSee https://prometheus.io/docs/alerting/latest/configuration/#wechat_config\",\n \"properties\": {\n \"agent_id\": {\n \"type\": \"string\"\n },\n \"api_secret\": {\n \"description\": \"The secret's key that contains the WeChat API key.\\nThe secret needs to be in the same namespace as the AlertmanagerConfig\\nfallback to global alertmanager setting if empty\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"api_url\": {\n \"description\": \"The WeChat API URL.\\nfallback to global alertmanager setting if empty\",\n \"type\": \"string\"\n },\n \"corp_id\": {\n \"description\": \"The corp id for authentication.\\nfallback to global alertmanager setting if empty\",\n \"type\": \"string\"\n },\n \"http_config\": {\n \"description\": \"HTTP client configuration.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header configuration for the client.\\nThis is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basic_auth\": {\n \"description\": \"BasicAuth for the client.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token_file\": {\n \"description\": \"BearerTokenFile defines filename for bearer token, it must be mounted to pod.\",\n \"type\": \"string\"\n },\n \"bearer_token_secret\": {\n \"description\": \"The secret's key that contains the bearer token\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 client credentials used to fetch a token for the targets.\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"Optional proxy URL.\",\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLS configuration for the client.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"message\": {\n \"description\": \"API request data as defined by the WeChat API.\",\n \"type\": \"string\"\n },\n \"message_type\": {\n \"type\": \"string\"\n },\n \"send_resolved\": {\n \"description\": \"SendResolved controls notify about resolved alerts.\",\n \"type\": \"boolean\"\n },\n \"to_party\": {\n \"type\": \"string\"\n },\n \"to_tag\": {\n \"type\": \"string\"\n },\n \"to_user\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"route\": {\n \"description\": \"Route definition for alertmanager, may include nested routes.\",\n \"properties\": {\n \"active_time_intervals\": {\n \"description\": \"ActiveTimeIntervals Times when the route should be active\\nThese must match the name at time_intervals\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"continue\": {\n \"description\": \"Continue indicating whether an alert should continue matching subsequent\\nsibling nodes. It will always be true for the first-level route if disableRouteContinueEnforce for vmalertmanager not set.\",\n \"type\": \"boolean\"\n },\n \"group_by\": {\n \"description\": \"List of labels to group by.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"group_interval\": {\n \"description\": \"How long to wait before sending an updated notification.\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"group_wait\": {\n \"description\": \"How long to wait before sending the initial notification.\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"matchers\": {\n \"description\": \"List of matchers that the alert’s labels should match. For the first\\nlevel route, the operator adds a namespace: \\\"CRD_NS\\\" matcher.\\nhttps://prometheus.io/docs/alerting/latest/configuration/#matcher\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"mute_time_intervals\": {\n \"description\": \"MuteTimeIntervals is a list of interval names that will mute matched alert\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"receiver\": {\n \"description\": \"Name of the receiver for this route.\",\n \"type\": \"string\"\n },\n \"repeat_interval\": {\n \"description\": \"How long to wait before repeating the last notification.\",\n \"pattern\": \"[0-9]+(ms|s|m|h)\",\n \"type\": \"string\"\n },\n \"routes\": {\n \"description\": \"Child routes.\\nhttps://prometheus.io/docs/alerting/latest/configuration/#route\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"receiver\"\n ],\n \"type\": \"object\"\n },\n \"time_intervals\": {\n \"description\": \"TimeIntervals defines named interval for active/mute notifications interval\\nSee https://prometheus.io/docs/alerting/latest/configuration/#time_interval\",\n \"items\": {\n \"description\": \"TimeIntervals for alerts\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of interval\",\n \"type\": \"string\"\n },\n \"time_intervals\": {\n \"description\": \"TimeIntervals interval configuration\",\n \"items\": {\n \"description\": \"TimeInterval defines intervals of time\",\n \"properties\": {\n \"days_of_month\": {\n \"description\": \"DayOfMonth defines list of numerical days in the month. Days begin at 1. Negative values are also accepted.\\nfor example, ['1:5', '-3:-1']\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"location\": {\n \"description\": \"Location in golang time location form, e.g. UTC\",\n \"type\": \"string\"\n },\n \"months\": {\n \"description\": \"Months defines list of calendar months identified by a case-insensitive name (e.g. ‘January’) or numeric 1.\\nFor example, ['1:3', 'may:august', 'december']\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"times\": {\n \"description\": \"Times defines time range for mute\",\n \"items\": {\n \"description\": \"TimeRange ranges inclusive of the starting time and exclusive of the end time\",\n \"properties\": {\n \"end_time\": {\n \"description\": \"EndTime for example HH:MM\",\n \"type\": \"string\"\n },\n \"start_time\": {\n \"description\": \"StartTime for example HH:MM\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"end_time\",\n \"start_time\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"weekdays\": {\n \"description\": \"Weekdays defines list of days of the week, where the week begins on Sunday and ends on Saturday.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"years\": {\n \"description\": \"Years defines numerical list of years, ranges are accepted.\\nFor example, ['2020:2022', '2030']\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"time_intervals\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"receivers\",\n \"route\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Alertmanager Config\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Alertmanager Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAuth.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAuth.json new file mode 100644 index 00000000000..8cf70f11870 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMAuth.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMAuth", + "schema": "{\n \"description\": \"VMAuth is the Schema for the vmauths API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMAuthSpec defines the desired state of VMAuth\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMAuth\\nobject, which shall be mounted into the VMAuth Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"configReloaderExtraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ConfigReloaderExtraArgs that will be passed to VMAuths config-reloader container\\nfor example resyncInterval: \\\"30s\\\"\",\n \"type\": \"object\"\n },\n \"configSecret\": {\n \"description\": \"ConfigSecret is the name of a Kubernetes Secret in the same namespace as the\\nVMAuth object, which contains auth configuration for vmauth,\\nconfiguration must be inside secret key: config.yaml.\\nIt must be created and managed manually.\\nIf it's defined, configuration for vmauth becomes unmanaged and operator'll not create any related secrets/config-reloaders\",\n \"type\": \"string\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"default_url\": {\n \"description\": \"DefaultURLs backend url for non-matching paths filter\\nusually used for default backend with error message\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"discover_backend_ips\": {\n \"description\": \"DiscoverBackendIPs instructs discovering URLPrefix backend IPs via DNS.\",\n \"type\": \"boolean\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"drop_src_path_prefix_parts\": {\n \"description\": \"DropSrcPathPrefixParts is the number of `/`-delimited request path prefix parts to drop before proxying the request to backend.\\nSee [here](https://docs.victoriametrics.com/vmauth#dropping-request-path-prefix) for more details.\",\n \"type\": \"integer\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VMAuth pod\\nfor example remoteWrite.tmpDataPath: /tmp\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMAuth pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"headers\": {\n \"description\": \"Headers represent additional http headers, that vmauth uses\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.68.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases provides mapping for ip and hostname,\\nthat would be propagated to pod,\\ncannot be used with HostNetwork.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"ip\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMAuth\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"ingress\": {\n \"description\": \"Ingress enables ingress configuration for VMAuth.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"class_name\": {\n \"description\": \"ClassName defines ingress class name for VMAuth\",\n \"type\": \"string\"\n },\n \"extraRules\": {\n \"description\": \"ExtraRules - additional rules for ingress,\\nmust be checked for correctness by user.\",\n \"items\": {\n \"description\": \"IngressRule represents the rules mapping the paths under a specified host to\\nthe related backend services. Incoming requests are first evaluated for a host\\nmatch, then routed to the backend associated with the matching IngressRuleValue.\",\n \"properties\": {\n \"host\": {\n \"description\": \"host is the fully qualified domain name of a network host, as defined by RFC 3986.\\nNote the following deviations from the \\\"host\\\" part of the\\nURI as defined in RFC 3986:\\n1. IPs are not allowed. Currently an IngressRuleValue can only apply to\\n the IP in the Spec of the parent Ingress.\\n2. The `:` delimiter is not respected because ports are not allowed.\\n\\t Currently the port of an Ingress is implicitly :80 for http and\\n\\t :443 for https.\\nBoth these may change in the future.\\nIncoming requests are matched against the host before the\\nIngressRuleValue. If the host is unspecified, the Ingress routes all\\ntraffic based on the specified IngressRuleValue.\\n\\n\\nhost can be \\\"precise\\\" which is a domain name without the terminating dot of\\na network host (e.g. \\\"foo.bar.com\\\") or \\\"wildcard\\\", which is a domain name\\nprefixed with a single wildcard label (e.g. \\\"*.foo.com\\\").\\nThe wildcard character '*' must appear by itself as the first DNS label and\\nmatches only a single label. You cannot have a wildcard label by itself (e.g. Host == \\\"*\\\").\\nRequests will be matched against the Host field in the following way:\\n1. If host is precise, the request matches this rule if the http host header is equal to Host.\\n2. If host is a wildcard, then the request matches this rule if the http host header\\nis to equal to the suffix (removing the first label) of the wildcard rule.\",\n \"type\": \"string\"\n },\n \"http\": {\n \"description\": \"HTTPIngressRuleValue is a list of http selectors pointing to backends.\\nIn the example: http://\\u003chost\\u003e/\\u003cpath\\u003e?\\u003csearchpart\\u003e -\\u003e backend where\\nwhere parts of the url correspond to RFC 3986, this resource will be used\\nto match against everything after the last '/' and before the first '?'\\nor '#'.\",\n \"properties\": {\n \"paths\": {\n \"description\": \"paths is a collection of paths that map requests to backends.\",\n \"items\": {\n \"description\": \"HTTPIngressPath associates a path with a backend. Incoming urls matching the\\npath are forwarded to the backend.\",\n \"properties\": {\n \"backend\": {\n \"description\": \"backend defines the referenced service endpoint to which the traffic\\nwill be forwarded to.\",\n \"properties\": {\n \"resource\": {\n \"description\": \"resource is an ObjectRef to another Kubernetes resource in the namespace\\nof the Ingress object. If resource is specified, a service.Name and\\nservice.Port must not be specified.\\nThis is a mutually exclusive setting with \\\"Service\\\".\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"service\": {\n \"description\": \"service references a service as a backend.\\nThis is a mutually exclusive setting with \\\"Resource\\\".\",\n \"properties\": {\n \"name\": {\n \"description\": \"name is the referenced service. The service must exist in\\nthe same namespace as the Ingress object.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"port of the referenced service. A port name or port number\\nis required for a IngressServiceBackend.\",\n \"properties\": {\n \"name\": {\n \"description\": \"name is the name of the port on the Service.\\nThis is a mutually exclusive setting with \\\"Number\\\".\",\n \"type\": \"string\"\n },\n \"number\": {\n \"description\": \"number is the numerical port number (e.g. 80) on the Service.\\nThis is a mutually exclusive setting with \\\"Name\\\".\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"path is matched against the path of an incoming request. Currently it can\\ncontain characters disallowed from the conventional \\\"path\\\" part of a URL\\nas defined by RFC 3986. Paths must begin with a '/' and must be present\\nwhen using PathType with value \\\"Exact\\\" or \\\"Prefix\\\".\",\n \"type\": \"string\"\n },\n \"pathType\": {\n \"description\": \"pathType determines the interpretation of the path matching. PathType can\\nbe one of the following values:\\n* Exact: Matches the URL path exactly.\\n* Prefix: Matches based on a URL path prefix split by '/'. Matching is\\n done on a path element by element basis. A path element refers is the\\n list of labels in the path split by the '/' separator. A request is a\\n match for path p if every p is an element-wise prefix of p of the\\n request path. Note that if the last element of the path is a substring\\n of the last element in request path, it is not a match (e.g. /foo/bar\\n matches /foo/bar/baz, but does not match /foo/barbaz).\\n* ImplementationSpecific: Interpretation of the Path matching is up to\\n the IngressClass. Implementations can treat this as a separate PathType\\n or treat it identically to Prefix or Exact path types.\\nImplementations are required to support all path types.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"backend\",\n \"pathType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"paths\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"extraTls\": {\n \"description\": \"ExtraTLS - additional TLS configuration for ingress\\nmust be checked for correctness by user.\",\n \"items\": {\n \"description\": \"IngressTLS describes the transport layer security associated with an ingress.\",\n \"properties\": {\n \"hosts\": {\n \"description\": \"hosts is a list of hosts included in the TLS certificate. The values in\\nthis list must match the name/s used in the tlsSecret. Defaults to the\\nwildcard host setting for the loadbalancer controller fulfilling this\\nIngress, if left unspecified.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"secretName\": {\n \"description\": \"secretName is the name of the secret used to terminate TLS traffic on\\nport 443. Field is left optional to allow TLS routing based on SNI\\nhostname alone. If the SNI host in a listener conflicts with the \\\"Host\\\"\\nheader field used by an IngressRule, the SNI host is used for termination\\nand value of the \\\"Host\\\" header is used for routing.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"host\": {\n \"description\": \"Host defines ingress host parameter for default rule\\nIt will be used, only if TlsHosts is empty\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n },\n \"tlsHosts\": {\n \"description\": \"TlsHosts configures TLS access for ingress, tlsSecretName must be defined for it.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tlsSecretName\": {\n \"description\": \"TlsSecretName defines secretname at the VMAuth namespace with cert and key\\nhttps://kubernetes.io/docs/concepts/services-networking/ingress/#tls\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the vmSingle configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip_filters\": {\n \"description\": \"IPFilters defines per target src ip filters\\nsupported only with enterprise version of [vmauth](https://docs.victoriametrics.com/vmauth/#ip-filters)\",\n \"properties\": {\n \"allow_list\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"deny_list\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"license\": {\n \"description\": \"License allows to configure license key to be used for enterprise features.\\nUsing license key is supported starting from VictoriaMetrics v1.94.0.\\nSee [here](https://docs.victoriametrics.com/enterprise)\",\n \"properties\": {\n \"key\": {\n \"description\": \"Enterprise license key. This flag is available only in [VictoriaMetrics enterprise](https://docs.victoriametrics.com/enterprise).\\nTo request a trial license, [go to](https://victoriametrics.com/products/enterprise/trial)\",\n \"type\": \"string\"\n },\n \"keyRef\": {\n \"description\": \"KeyRef is reference to secret with license key for enterprise features.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"load_balancing_policy\": {\n \"description\": \"LoadBalancingPolicy defines load balancing policy to use for backend urls.\\nSupported policies: least_loaded, first_available.\\nSee [here](https://docs.victoriametrics.com/vmauth#load-balancing) for more details (default \\\"least_loaded\\\")\",\n \"enum\": [\n \"least_loaded\",\n \"first_available\"\n ],\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMAuth to be configured with.\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for victoria metrics single to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"max_concurrent_requests\": {\n \"description\": \"MaxConcurrentRequests defines max concurrent requests per user\\n300 is default value for vmauth\",\n \"type\": \"integer\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMAuth pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port listen port\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"PriorityClassName assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMAuth\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not defined default resources from operator config will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"response_headers\": {\n \"description\": \"ResponseHeaders represent additional http headers, that vmauth adds for request response\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.93.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retry_status_codes\": {\n \"description\": \"RetryStatusCodes defines http status codes in numeric format for request retries\\ne.g. [429,503]\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMAuth\\nobject, which shall be mounted into the VMAuth Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"selectAllByDefault\": {\n \"description\": \"SelectAllByDefault changes default behavior for empty CRD selectors, such userSelector.\\nwith selectAllByDefault: true and empty userSelector and userNamespaceSelector\\nOperator selects all exist users\\nwith selectAllByDefault: false - selects nothing\",\n \"type\": \"boolean\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVMAuth Pods.\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmauth VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmsingle service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"unauthorizedAccessConfig\": {\n \"description\": \"UnauthorizedAccessConfig configures access for un authorized users\",\n \"items\": {\n \"properties\": {\n \"discover_backend_ips\": {\n \"description\": \"DiscoverBackendIPs instructs discovering URLPrefix backend IPs via DNS.\",\n \"type\": \"boolean\"\n },\n \"drop_src_path_prefix_parts\": {\n \"description\": \"DropSrcPathPrefixParts is the number of `/`-delimited request path prefix parts to drop before proxying the request to backend.\\nSee [here](https://docs.victoriametrics.com/vmauth#dropping-request-path-prefix) for more details.\",\n \"type\": \"integer\"\n },\n \"headers\": {\n \"description\": \"RequestHeaders represent additional http headers, that vmauth uses\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.68.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"load_balancing_policy\": {\n \"description\": \"LoadBalancingPolicy defines load balancing policy to use for backend urls.\\nSupported policies: least_loaded, first_available.\\nSee [here](https://docs.victoriametrics.com/vmauth#load-balancing) for more details (default \\\"least_loaded\\\")\",\n \"enum\": [\n \"least_loaded\",\n \"first_available\"\n ],\n \"type\": \"string\"\n },\n \"response_headers\": {\n \"description\": \"ResponseHeaders represent additional http headers, that vmauth adds for request response\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.93.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retry_status_codes\": {\n \"description\": \"RetryStatusCodes defines http status codes in numeric format for request retries\\nCan be defined per target or at VMUser.spec level\\ne.g. [429,503]\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"src_headers\": {\n \"description\": \"SrcHeaders is an optional list of headers, which must match request headers.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"src_hosts\": {\n \"description\": \"SrcHosts is an optional list of regular expressions, which must match the request hostname.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"src_paths\": {\n \"description\": \"SrcPaths is an optional list of regular expressions, which must match the request path.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"src_query_args\": {\n \"description\": \"SrcQueryArgs is an optional list of query args, which must match request URL query args.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"url_prefix\": {\n \"description\": \"UrlPrefix contains backend url prefixes for the proxied request url.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"userNamespaceSelector\": {\n \"description\": \"UserNamespaceSelector Namespaces to be selected for VMAuth discovery.\\nWorks in combination with Selector.\\nNamespaceSelector nil - only objects at VMAuth namespace.\\nSelector nil - only objects at NamespaceSelector namespaces.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"userSelector\": {\n \"description\": \"UserSelector defines VMUser to be selected for config file generation.\\nWorks in combination with NamespaceSelector.\\nNamespaceSelector nil - only objects at VMAuth namespace.\\nIf both nil - behaviour controlled by selectAllByDefault\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMAuth container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output deploy definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Auth\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Auth", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMCluster.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMCluster.json new file mode 100644 index 00000000000..d362913e7d8 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMCluster.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMCluster", + "schema": "{\n \"description\": \"VMCluster is fast, cost-effective and scalable time-series database.\\nCluster version with\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMClusterSpec defines the desired state of VMCluster\",\n \"properties\": {\n \"clusterVersion\": {\n \"description\": \"ClusterVersion defines default images tag for all components.\\nit can be overwritten with component specific image.tag value.\",\n \"type\": \"string\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"license\": {\n \"description\": \"License allows to configure license key to be used for enterprise features.\\nUsing license key is supported starting from VictoriaMetrics v1.94.0.\\nSee [here](https://docs.victoriametrics.com/enterprise)\",\n \"properties\": {\n \"key\": {\n \"description\": \"Enterprise license key. This flag is available only in [VictoriaMetrics enterprise](https://docs.victoriametrics.com/enterprise).\\nTo request a trial license, [go to](https://victoriametrics.com/products/enterprise/trial)\",\n \"type\": \"string\"\n },\n \"keyRef\": {\n \"description\": \"KeyRef is reference to secret with license key for enterprise features.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"replicationFactor\": {\n \"description\": \"ReplicationFactor defines how many copies of data make among\\ndistinct storage nodes\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"retentionPeriod\": {\n \"description\": \"RetentionPeriod for the stored metrics\\nNote VictoriaMetrics has data/ and indexdb/ folders\\nmetrics from data/ removed eventually as soon as partition leaves retention period\\nreverse index data at indexdb rotates once at the half of configured\\n[retention period](https://docs.victoriametrics.com/Single-server-VictoriaMetrics/#retention)\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVMSelect, VMStorage and VMInsert Pods.\",\n \"type\": \"string\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"vminsert\": {\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"clusterNativeListenPort\": {\n \"description\": \"ClusterNativePort for multi-level cluster setup.\\nMore [details](https://docs.victoriametrics.com/Cluster-VictoriaMetrics#multi-level-cluster-setup)\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMInsert\\nobject, which shall be mounted into the VMInsert Pods.\\nThe ConfigMaps are mounted into /etc/vm/configs/\\u003cconfigmap-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMInsert pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"hpa\": {\n \"description\": \"HPA defines kubernetes PodAutoScaling configuration version 2.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMInsert\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VMInsert configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"insertPorts\": {\n \"description\": \"InsertPorts - additional listen ports for data ingestion.\",\n \"properties\": {\n \"graphitePort\": {\n \"description\": \"GraphitePort listen port\",\n \"type\": \"string\"\n },\n \"influxPort\": {\n \"description\": \"InfluxPort listen port\",\n \"type\": \"string\"\n },\n \"openTSDBHTTPPort\": {\n \"description\": \"OpenTSDBHTTPPort for http connections.\",\n \"type\": \"string\"\n },\n \"openTSDBPort\": {\n \"description\": \"OpenTSDBPort for tcp and udp listen\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMInsert to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMInsert to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMInsert pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port listen port\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"Priority class assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMInsert cluster. The controller will\\neventually make the size of the running cluster equal to the expected\\nsize.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdate\": {\n \"description\": \"RollingUpdate - overrides deployment update params.\",\n \"properties\": {\n \"maxSurge\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be scheduled above the desired number of\\npods.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nThis can not be 0 if MaxUnavailable is 0.\\nAbsolute number is calculated from percentage by rounding up.\\nDefaults to 25%.\\nExample: when this is set to 30%, the new ReplicaSet can be scaled up immediately when\\nthe rolling update starts, such that the total number of old and new pods do not exceed\\n130% of desired pods. Once old pods have been killed,\\nnew ReplicaSet can be scaled up further, ensuring that total number of pods running\\nat any time during the update is at most 130% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"The maximum number of pods that can be unavailable during the update.\\nValue can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).\\nAbsolute number is calculated from percentage by rounding down.\\nThis can not be 0 if MaxSurge is 0.\\nDefaults to 25%.\\nExample: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods\\nimmediately when the rolling update starts. Once new pods are ready, old ReplicaSet\\ncan be scaled down further, followed by scaling up the new ReplicaSet, ensuring\\nthat the total number of pods available at all times during the update is at\\nleast 70% of desired pods.\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMInsert\\nobject, which shall be mounted into the VMInsert Pods.\\nThe Secrets are mounted into /etc/vm/secrets/\\u003csecret-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vminsert VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vminsert service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"updateStrategy\": {\n \"description\": \"UpdateStrategy - overrides default update strategy.\",\n \"enum\": [\n \"Recreate\",\n \"RollingUpdate\"\n ],\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMInsert container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output Deployment definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"replicaCount\"\n ],\n \"type\": \"object\"\n },\n \"vmselect\": {\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"cacheMountPath\": {\n \"description\": \"CacheMountPath allows to add cache persistent for VMSelect,\\nwill use \\\"/cache\\\" as default if not specified.\",\n \"type\": \"string\"\n },\n \"claimTemplates\": {\n \"description\": \"ClaimTemplates allows adding additional VolumeClaimTemplates for StatefulSet\",\n \"items\": {\n \"description\": \"PersistentVolumeClaim is a user's request for and claim to a persistent volume\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"clusterNativeListenPort\": {\n \"description\": \"ClusterNativePort for multi-level cluster setup.\\nMore [details](https://docs.victoriametrics.com/Cluster-VictoriaMetrics#multi-level-cluster-setup)\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMSelect\\nobject, which shall be mounted into the VMSelect Pods.\\nThe ConfigMaps are mounted into /etc/vm/configs/\\u003cconfigmap-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMSelect pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"hpa\": {\n \"description\": \"Configures horizontal pod autoscaling.\\nNote, enabling this option disables vmselect to vmselect communication. In most cases it's not an issue.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMSelect\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VMSelect configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMSelect to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMSelect to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"persistentVolume\": {\n \"description\": \"Storage - add persistent volume for cacheMountPath\\nits useful for persistent cache\\nuse storage instead of persistentVolume.\",\n \"properties\": {\n \"disableMountSubPath\": {\n \"description\": \"Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary.\\nDisableMountSubPath allows to remove any subPath usage in volume mounts.\",\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More\\ninfo: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"description\": \"A PVC spec to be used by the VMAlertManager StatefulSets.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMSelect pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port listen port\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"Priority class assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMSelect cluster. The controller will\\neventually make the size of the running cluster equal to the expected\\nsize.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdateStrategy\": {\n \"description\": \"RollingUpdateStrategy defines strategy for application updates\\nDefault is OnDelete, in this case operator handles update process\\nCan be changed for RollingUpdate\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMSelect\\nobject, which shall be mounted into the VMSelect Pods.\\nThe Secrets are mounted into /etc/vm/secrets/\\u003csecret-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmselect VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmselect service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"storage\": {\n \"description\": \"StorageSpec - add persistent volume claim for cacheMountPath\\nits needed for persistent cache\",\n \"properties\": {\n \"disableMountSubPath\": {\n \"description\": \"Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary.\\nDisableMountSubPath allows to remove any subPath usage in volume mounts.\",\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More\\ninfo: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"description\": \"A PVC spec to be used by the VMAlertManager StatefulSets.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"EmbeddedMetadata contains metadata relevant to an EmbeddedResource.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"Spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"Status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMSelect container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output Deployment definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"replicaCount\"\n ],\n \"type\": \"object\"\n },\n \"vmstorage\": {\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"claimTemplates\": {\n \"description\": \"ClaimTemplates allows adding additional VolumeClaimTemplates for StatefulSet\",\n \"items\": {\n \"description\": \"PersistentVolumeClaim is a user's request for and claim to a persistent volume\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"APIVersion defines the versioned schema of this representation of an object.\\nServers should convert recognized schemas to the latest internal value, and\\nmay reject unrecognized values.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is a string value representing the REST resource this object represents.\\nServers may infer this from the endpoint the client submits requests to.\\nCannot be updated.\\nIn CamelCase.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\",\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Standard object's metadata.\\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"spec\": {\n \"description\": \"spec defines the desired characteristics of a volume requested by a pod author.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"status\": {\n \"description\": \"status represents the current information/status of a persistent volume claim.\\nRead-only.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the actual access modes the volume backing the PVC has.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"allocatedResourceStatuses\": {\n \"additionalProperties\": {\n \"description\": \"When a controller receives persistentvolume claim update with ClaimResourceStatus for a resource\\nthat it does not recognizes, then it should ignore that update and let other controllers\\nhandle it.\",\n \"type\": \"string\"\n },\n \"description\": \"allocatedResourceStatuses stores status of resource being resized for the given PVC.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nClaimResourceStatus can be in any of following states:\\n\\t- ControllerResizeInProgress:\\n\\t\\tState set when resize controller starts resizing the volume in control-plane.\\n\\t- ControllerResizeFailed:\\n\\t\\tState set when resize has failed in resize controller with a terminal error.\\n\\t- NodeResizePending:\\n\\t\\tState set when resize controller has finished resizing the volume but further resizing of\\n\\t\\tvolume is needed on the node.\\n\\t- NodeResizeInProgress:\\n\\t\\tState set when kubelet starts resizing the volume.\\n\\t- NodeResizeFailed:\\n\\t\\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\\n\\t\\tNodeResizeFailed.\\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\\n\\t- pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"ControllerResizeFailed\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizePending\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeInProgress\\\"\\n - pvc.status.allocatedResourceStatus['storage'] = \\\"NodeResizeFailed\\\"\\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"granular\"\n },\n \"allocatedResources\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"allocatedResources tracks the resources allocated to a PVC including its capacity.\\nKey names follow standard Kubernetes label syntax. Valid values are either:\\n\\t* Un-prefixed keys:\\n\\t\\t- storage - the capacity of the volume.\\n\\t* Custom resources must use implementation-defined prefixed names such as \\\"example.com/my-custom-resource\\\"\\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered\\nreserved and hence may not be used.\\n\\n\\nCapacity reported here may be larger than the actual capacity when a volume expansion operation\\nis requested.\\nFor storage quota, the larger value from allocatedResources and PVC.spec.resources is used.\\nIf allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.\\nIf a volume expansion capacity request is lowered, allocatedResources is only\\nlowered if there are no expansion operations in progress and if the actual volume capacity\\nis equal or lower than the requested capacity.\\n\\n\\nA controller that receives PVC update with previously unknown resourceName\\nshould ignore the update for the purpose it was designed. For example - a controller that\\nonly is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid\\nresources associated with PVC.\\n\\n\\nThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.\",\n \"type\": \"object\"\n },\n \"capacity\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"capacity represents the actual resources of the underlying volume.\",\n \"type\": \"object\"\n },\n \"conditions\": {\n \"description\": \"conditions is the current Condition of persistent volume claim. If underlying persistent volume is being\\nresized then the Condition will be set to 'Resizing'.\",\n \"items\": {\n \"description\": \"PersistentVolumeClaimCondition contains details about state of pvc\",\n \"properties\": {\n \"lastProbeTime\": {\n \"description\": \"lastProbeTime is the time we probed the condition.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"lastTransitionTime\": {\n \"description\": \"lastTransitionTime is the time the condition transitioned from one status to another.\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"message is the human-readable message indicating details about last transition.\",\n \"type\": \"string\"\n },\n \"reason\": {\n \"description\": \"reason is a unique, this should be a short, machine understandable string that gives the reason\\nfor condition's last transition. If it reports \\\"Resizing\\\" that means the underlying\\npersistent volume is being resized.\",\n \"type\": \"string\"\n },\n \"status\": {\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"PersistentVolumeClaimConditionType is a valid value of PersistentVolumeClaimCondition.Type\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"type\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"type\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"currentVolumeAttributesClassName\": {\n \"description\": \"currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.\\nWhen unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"type\": \"string\"\n },\n \"modifyVolumeStatus\": {\n \"description\": \"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation.\\nWhen this is unset, there is no ModifyVolume operation being attempted.\\nThis is an alpha field and requires enabling VolumeAttributesClass feature.\",\n \"properties\": {\n \"status\": {\n \"description\": \"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\\n - Pending\\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\\n the specified VolumeAttributesClass not existing.\\n - InProgress\\n InProgress indicates that the volume is being modified.\\n - Infeasible\\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\\n\\t resolve the error, a valid VolumeAttributesClass needs to be specified.\\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.\",\n \"type\": \"string\"\n },\n \"targetVolumeAttributesClassName\": {\n \"description\": \"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\"\n ],\n \"type\": \"object\"\n },\n \"phase\": {\n \"description\": \"phase represents the current phase of PersistentVolumeClaim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMStorage\\nobject, which shall be mounted into the VMStorage Pods.\\nThe ConfigMaps are mounted into /etc/vm/configs/\\u003cconfigmap-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMStorage pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMStorage\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the VMStorage configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMStorage to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMStorage to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"maintenanceInsertNodeIDs\": {\n \"description\": \"MaintenanceInsertNodeIDs - excludes given node ids from insert requests routing, must contain pod suffixes - for pod-0, id will be 0 and etc.\\nlets say, you have pod-0, pod-1, pod-2, pod-3. to exclude pod-0 and pod-3 from insert routing, define nodeIDs: [0,3].\\nUseful at storage expanding, when you want to rebalance some data at cluster.\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"maintenanceSelectNodeIDs\": {\n \"description\": \"MaintenanceInsertNodeIDs - excludes given node ids from select requests routing, must contain pod suffixes - for pod-0, id will be 0 and etc.\",\n \"items\": {\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"minReadySeconds\": {\n \"description\": \"MinReadySeconds defines a minim number os seconds to wait before starting update next pod\\nif previous in healthy state\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"podDisruptionBudget\": {\n \"description\": \"PodDisruptionBudget created by operator\",\n \"properties\": {\n \"maxUnavailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at most \\\"maxUnavailable\\\" pods selected by\\n\\\"selector\\\" are unavailable after the eviction, i.e. even in absence of\\nthe evicted pod. For example, one can prevent all voluntary evictions\\nby specifying 0. This is a mutually exclusive setting with \\\"minAvailable\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"minAvailable\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"An eviction is allowed if at least \\\"minAvailable\\\" pods selected by\\n\\\"selector\\\" will still be available after the eviction, i.e. even in the\\nabsence of the evicted pod. So for example you can prevent all voluntary\\nevictions by specifying \\\"100%\\\".\",\n \"x-kubernetes-int-or-string\": true\n },\n \"selectorLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"replaces default labels selector generated by operator\\nit's useful when you need to create custom budget\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMStorage pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port for health check connetions\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"Priority class assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMStorage cluster. The controller will\\neventually make the size of the running cluster equal to the expected\\nsize.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"rollingUpdateStrategy\": {\n \"description\": \"RollingUpdateStrategy defines strategy for application updates\\nDefault is OnDelete, in this case operator handles update process\\nCan be changed for RollingUpdate\",\n \"type\": \"string\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMStorage\\nobject, which shall be mounted into the VMStorage Pods.\\nThe Secrets are mounted into /etc/vm/secrets/\\u003csecret-name\\u003e.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmstorage VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be create additional service for vmstorage\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"storage\": {\n \"description\": \"Storage - add persistent volume for StorageDataPath\\nits useful for persistent cache\",\n \"properties\": {\n \"disableMountSubPath\": {\n \"description\": \"Deprecated: subPath usage will be disabled by default in a future release, this option will become unnecessary.\\nDisableMountSubPath allows to remove any subPath usage in volume mounts.\",\n \"type\": \"boolean\"\n },\n \"emptyDir\": {\n \"description\": \"EmptyDirVolumeSource to be used by the Prometheus StatefulSets. If specified, used in place of any volumeClaimTemplate. More\\ninfo: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir\",\n \"properties\": {\n \"medium\": {\n \"description\": \"medium represents what type of storage medium should back this directory.\\nThe default is \\\"\\\" which means to use the node's default medium.\\nMust be an empty string (default) or Memory.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"type\": \"string\"\n },\n \"sizeLimit\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"sizeLimit is the total amount of local storage required for this EmptyDir volume.\\nThe size limit is also applicable for memory medium.\\nThe maximum usage on memory medium EmptyDir would be the minimum value between\\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\\nThe default is nil which means that the limit is undefined.\\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n }\n },\n \"type\": \"object\"\n },\n \"volumeClaimTemplate\": {\n \"description\": \"A PVC spec to be used by the VMAlertManager StatefulSets.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageDataPath\": {\n \"description\": \"StorageDataPath - path to storage data\",\n \"type\": \"string\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"vmBackup\": {\n \"description\": \"VMBackup configuration for backup\",\n \"properties\": {\n \"acceptEULA\": {\n \"description\": \"AcceptEULA accepts enterprise feature usage, must be set to true.\\notherwise backupmanager cannot be added to single/cluster version.\\nhttps://victoriametrics.com/legal/esa/\",\n \"type\": \"boolean\"\n },\n \"concurrency\": {\n \"description\": \"Defines number of concurrent workers. Higher concurrency may reduce backup duration (default 10)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"credentialsSecret\": {\n \"description\": \"CredentialsSecret is secret in the same namespace for access to remote storage\\nThe secret is mounted into /etc/vm/creds.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"customS3Endpoint\": {\n \"description\": \"Custom S3 endpoint for use with S3-compatible storages (e.g. MinIO). S3 is used if not set\",\n \"type\": \"string\"\n },\n \"destination\": {\n \"description\": \"Defines destination for backup\",\n \"type\": \"string\"\n },\n \"destinationDisableSuffixAdd\": {\n \"description\": \"DestinationDisableSuffixAdd - disables suffix adding for cluster version backups\\neach vmstorage backup must have unique backup folder\\nso operator adds POD_NAME as suffix for backup destination folder.\",\n \"type\": \"boolean\"\n },\n \"disableDaily\": {\n \"description\": \"Defines if daily backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableHourly\": {\n \"description\": \"Defines if hourly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableMonthly\": {\n \"description\": \"Defines if monthly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableWeekly\": {\n \"description\": \"Defines if weekly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"extra args like maxBytesPerSecond default 0\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMBackuper\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMBackup to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMBackup to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port for health check connections\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not defined default resources from operator config will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restore\": {\n \"description\": \"Restore Allows to enable restore options for pod\\nRead [more](https://docs.victoriametrics.com/vmbackupmanager#restore-commands)\",\n \"properties\": {\n \"onStart\": {\n \"description\": \"OnStart defines configuration for restore on pod start\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Enabled defines if restore on start enabled\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"snapshotCreateURL\": {\n \"description\": \"SnapshotCreateURL overwrites url for snapshot create\",\n \"type\": \"string\"\n },\n \"snapshotDeleteURL\": {\n \"description\": \"SnapShotDeleteURL overwrites url for snapshot delete\",\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the vmbackupmanager container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"vmInsertPort\": {\n \"description\": \"VMInsertPort for VMInsert connections\",\n \"type\": \"string\"\n },\n \"vmSelectPort\": {\n \"description\": \"VMSelectPort for VMSelect connections\",\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMStorage container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output Deployment definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"replicaCount\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"retentionPeriod\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"VM Cluster\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Cluster", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMNodeScrape.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMNodeScrape.json new file mode 100644 index 00000000000..b39a1d25a96 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMNodeScrape.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMNodeScrape", + "schema": "{\n \"description\": \"VMNodeScrape defines discovery for targets placed on kubernetes nodes,\\nusually its node-exporters and other host services.\\nInternalIP is used as __address__ for scraping.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMNodeScrapeSpec defines specification for VMNodeScrape.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"jobLabel\": {\n \"description\": \"The label to use to retrieve the job name from.\",\n \"type\": \"string\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Name of the port exposed at Node.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"relabelConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"selector\": {\n \"description\": \"Selector to select kubernetes Nodes.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetLabels\": {\n \"description\": \"TargetLabels transfers labels on the Kubernetes Node onto the target.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Node Scrape\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Node Scrape", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMPodScrape.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMPodScrape.json new file mode 100644 index 00000000000..905af5a1d82 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMPodScrape.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMPodScrape", + "schema": "{\n \"description\": \"VMPodScrape is scrape configuration for pods,\\nit generates vmagent's config for scraping pod targets\\nbased on selectors.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMPodScrapeSpec defines the desired state of VMPodScrape\",\n \"properties\": {\n \"attach_metadata\": {\n \"description\": \"AttachMetadata configures metadata attaching from service discovery\",\n \"properties\": {\n \"node\": {\n \"description\": \"Node instructs vmagent to add node specific metadata from service discovery\\nValid for roles: pod, endpoints, endpointslice.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"jobLabel\": {\n \"description\": \"The label to use to retrieve the job name from.\",\n \"type\": \"string\"\n },\n \"namespaceSelector\": {\n \"description\": \"Selector to select which namespaces the Endpoints objects are discovered from.\",\n \"properties\": {\n \"any\": {\n \"description\": \"Boolean describing whether all namespaces are selected in contrast to a\\nlist restricting them.\",\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"description\": \"List of namespace names.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podMetricsEndpoints\": {\n \"description\": \"A list of endpoints allowed as part of this PodMonitor.\",\n \"items\": {\n \"description\": \"PodMetricsEndpoint defines a scrapeable endpoint of a Kubernetes Pod serving metrics.\",\n \"properties\": {\n \"attach_metadata\": {\n \"description\": \"AttachMetadata configures metadata attaching from service discovery\",\n \"properties\": {\n \"node\": {\n \"description\": \"Node instructs vmagent to add node specific metadata from service discovery\\nValid for roles: pod, endpoints, endpointslice.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"filterRunning\": {\n \"description\": \"FilterRunning applies filter with pod status == running\\nit prevents from scrapping metrics at failed or succeed state pods.\\nenabled by default\",\n \"type\": \"boolean\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Name of the port exposed at Pod.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"relabelConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"TargetPort\\nName or number of the pod port this endpoint refers to. Mutually exclusive with port.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"podTargetLabels\": {\n \"description\": \"PodTargetLabels transfers labels on the Kubernetes Pod onto the target.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"description\": \"Selector to select Pod objects.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"podMetricsEndpoints\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Pod Scrape\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Pod Scrape", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMProbe.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMProbe.json new file mode 100644 index 00000000000..698713f5429 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMProbe.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMProbe", + "schema": "{\n \"description\": \"VMProbe defines a probe for targets, that will be executed with prober,\\nlike blackbox exporter.\\nIt helps to monitor reachability of target with various checks.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMProbeSpec contains specification parameters for a Probe.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"jobName\": {\n \"description\": \"The job name assigned to scraped metrics by default.\",\n \"type\": \"string\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"module\": {\n \"description\": \"The module to use for probing specifying how to probe the target.\\nExample module configuring in the blackbox exporter:\\nhttps://github.com/prometheus/blackbox_exporter/blob/master/example.yml\",\n \"type\": \"string\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targets\": {\n \"description\": \"Targets defines a set of static and/or dynamically discovered targets to be probed using the prober.\",\n \"properties\": {\n \"ingress\": {\n \"description\": \"Ingress defines the set of dynamically discovered ingress objects which hosts are considered for probing.\",\n \"properties\": {\n \"namespaceSelector\": {\n \"description\": \"Select Ingress objects by namespace.\",\n \"properties\": {\n \"any\": {\n \"description\": \"Boolean describing whether all namespaces are selected in contrast to a\\nlist restricting them.\",\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"description\": \"List of namespace names.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"relabelingConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"selector\": {\n \"description\": \"Select Ingress objects by labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"staticConfig\": {\n \"description\": \"StaticConfig defines static targets which are considers for probing.\",\n \"properties\": {\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels assigned to all metrics scraped from the targets.\",\n \"type\": \"object\"\n },\n \"relabelingConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"targets\": {\n \"description\": \"Targets is a list of URLs to probe using the configured prober.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targets\"\n ],\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vmProberSpec\": {\n \"description\": \"Specification for the prober to use for probing targets.\\nThe prober.URL parameter is required. Targets cannot be probed if left empty.\",\n \"properties\": {\n \"path\": {\n \"description\": \"Path to collect metrics from.\\nDefaults to `/probe`.\",\n \"type\": \"string\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\\nDefaults to `http`.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"url\": {\n \"description\": \"Mandatory URL of the prober.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"vmProberSpec\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"VM Probe\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Probe", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMRule.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMRule.json new file mode 100644 index 00000000000..a0c844b6a19 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMRule.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMRule", + "schema": "{\n \"description\": \"VMRule defines rule records for vmalert application\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMRuleSpec defines the desired state of VMRule\",\n \"properties\": {\n \"groups\": {\n \"description\": \"Groups list of group rules\",\n \"items\": {\n \"description\": \"RuleGroup is a list of sequentially evaluated recording and alerting rules.\",\n \"properties\": {\n \"concurrency\": {\n \"description\": \"Concurrency defines how many rules execute at once.\",\n \"type\": \"integer\"\n },\n \"eval_alignment\": {\n \"description\": \"Optional\\nThe evaluation timestamp will be aligned with group's interval,\\ninstead of using the actual timestamp that evaluation happens at.\\nIt is enabled by default to get more predictable results\\nand to visually align with graphs plotted via Grafana or vmui.\",\n \"type\": \"boolean\"\n },\n \"eval_delay\": {\n \"description\": \"Optional\\nAdjust the `time` parameter of group evaluation requests to compensate intentional query delay from the datasource.\",\n \"type\": \"string\"\n },\n \"eval_offset\": {\n \"description\": \"Optional\\nGroup will be evaluated at the exact offset in the range of [0...interval].\",\n \"type\": \"string\"\n },\n \"extra_filter_labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraFilterLabels optional list of label filters applied to every rule's\\nrequest within a group. Is compatible only with VM datasource.\\nSee more details [here](https://docs.victoriametrics.com/#prometheus-querying-api-enhancements)\\nDeprecated, use params instead\",\n \"type\": \"object\"\n },\n \"headers\": {\n \"description\": \"Headers contains optional HTTP headers added to each rule request\\nMust be in form `header-name: value`\\nFor example:\\n headers:\\n - \\\"CustomHeader: foo\\\"\\n - \\\"CustomHeader2: bar\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"description\": \"evaluation interval for group\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels optional list of labels added to every rule within a group.\\nIt has priority over the external labels.\\nLabels are commonly used for adding environment\\nor tenant-specific tag.\",\n \"type\": \"object\"\n },\n \"limit\": {\n \"description\": \"Limit the number of alerts an alerting rule and series a recording\\nrule can produce\",\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"Name of group\",\n \"type\": \"string\"\n },\n \"notifier_headers\": {\n \"description\": \"NotifierHeaders contains optional HTTP headers added to each alert request which will send to notifier\\nMust be in form `header-name: value`\\nFor example:\\n headers:\\n - \\\"CustomHeader: foo\\\"\\n - \\\"CustomHeader2: bar\\\"\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Params optional HTTP URL parameters added to each rule request\",\n \"type\": \"object\"\n },\n \"rules\": {\n \"description\": \"Rules list of alert rules\",\n \"items\": {\n \"description\": \"Rule describes an alerting or recording rule.\",\n \"properties\": {\n \"alert\": {\n \"description\": \"Alert is a name for alert\",\n \"type\": \"string\"\n },\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations will be added to rule configuration\",\n \"type\": \"object\"\n },\n \"debug\": {\n \"description\": \"Debug enables logging for rule\\nit useful for tracking\",\n \"type\": \"boolean\"\n },\n \"expr\": {\n \"description\": \"Expr is query, that will be evaluated at dataSource\",\n \"type\": \"string\"\n },\n \"for\": {\n \"description\": \"For evaluation interval in time.Duration format\\n30s, 1m, 1h or nanoseconds\",\n \"type\": \"string\"\n },\n \"keep_firing_for\": {\n \"description\": \"KeepFiringFor will make alert continue firing for this long\\neven when the alerting expression no longer has results.\\nUse time.Duration format, 30s, 1m, 1h or nanoseconds\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels will be added to rule configuration\",\n \"type\": \"object\"\n },\n \"record\": {\n \"description\": \"Record represents a query, that will be recorded to dataSource\",\n \"type\": \"string\"\n },\n \"update_entries_limit\": {\n \"description\": \"UpdateEntriesLimit defines max number of rule's state updates stored in memory.\\nOverrides `-rule.updateEntriesLimit` in vmalert.\",\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tenant\": {\n \"description\": \"Tenant id for group, can be used only with enterprise version of vmalert.\\nSee more details [here](https://docs.victoriametrics.com/vmalert#multitenancy).\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type defines datasource type for enterprise version of vmalert\\npossible values - prometheus,graphite\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\",\n \"rules\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"groups\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"VM Rule\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Rule", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMScrapeConfig.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMScrapeConfig.json new file mode 100644 index 00000000000..eb921d52241 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMScrapeConfig.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMScrapeConfig", + "schema": "{\n \"description\": \"VMScrapeConfig specifies a set of targets and parameters describing how to scrape them.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMScrapeConfigSpec defines the desired state of VMScrapeConfig\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"azureSDConfigs\": {\n \"description\": \"AzureSDConfigs defines a list of Azure service discovery configurations.\",\n \"items\": {\n \"description\": \"AzureSDConfig allow retrieving scrape targets from Azure VMs.\\nSee [here](https://docs.victoriametrics.com/sd_configs#azure_sd_configs)\",\n \"properties\": {\n \"authenticationMethod\": {\n \"description\": \"# The authentication method, either OAuth or ManagedIdentity.\\nSee https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview\",\n \"enum\": [\n \"OAuth\",\n \"ManagedIdentity\"\n ],\n \"type\": \"string\"\n },\n \"clientID\": {\n \"description\": \"Optional client ID. Only required with the OAuth authentication method.\",\n \"type\": \"string\"\n },\n \"clientSecret\": {\n \"description\": \"Optional client secret. Only required with the OAuth authentication method.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"environment\": {\n \"description\": \"The Azure environment.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port to scrape metrics from. If using the public IP address, this must\\ninstead be specified in the relabeling rule.\",\n \"type\": \"integer\"\n },\n \"resourceGroup\": {\n \"description\": \"Optional resource group name. Limits discovery to this resource group.\",\n \"type\": \"string\"\n },\n \"subscriptionID\": {\n \"description\": \"The subscription ID. Always required.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"tenantID\": {\n \"description\": \"Optional tenant ID. Only required with the OAuth authentication method.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"subscriptionID\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"consulSDConfigs\": {\n \"description\": \"ConsulSDConfigs defines a list of Consul service discovery configurations.\",\n \"items\": {\n \"description\": \"ConsulSDConfig defines a Consul service discovery configuration.\\nSee [here](https://docs.victoriametrics.com/sd_configs/#consul_sd_configs)\",\n \"properties\": {\n \"allowStale\": {\n \"description\": \"Allow stale Consul results (see https://developer.hashicorp.com/consul/api-docs/features/consistency). Will reduce load on Consul.\\nIf unset, use its default value.\",\n \"type\": \"boolean\"\n },\n \"authorization\": {\n \"description\": \"Authorization header to use on every scrape request.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth information to use on every scrape request.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"datacenter\": {\n \"description\": \"Consul Datacenter name, if not provided it will use the local Consul Agent Datacenter.\",\n \"type\": \"string\"\n },\n \"followRedirects\": {\n \"description\": \"Configure whether HTTP requests follow HTTP 3xx redirects.\\nIf unset, use its default value.\",\n \"type\": \"boolean\"\n },\n \"namespace\": {\n \"description\": \"Namespaces are only supported in Consul Enterprise.\",\n \"type\": \"string\"\n },\n \"nodeMeta\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Node metadata key/value pairs to filter nodes for a given service.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"partition\": {\n \"description\": \"Admin Partitions are only supported in Consul Enterprise.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee [feature description](https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy)\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scheme\": {\n \"description\": \"HTTP Scheme default \\\"http\\\"\",\n \"enum\": [\n \"HTTP\",\n \"HTTPS\"\n ],\n \"type\": \"string\"\n },\n \"server\": {\n \"description\": \"A valid string consisting of a hostname or IP followed by an optional port number.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"services\": {\n \"description\": \"A list of services for which targets are retrieved. If omitted, all services are scraped.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"tagSeparator\": {\n \"description\": \"The string by which Consul tags are joined into the tag label.\\nIf unset, use its default value.\",\n \"type\": \"string\"\n },\n \"tags\": {\n \"description\": \"An optional list of tags used to filter nodes for a given service. Services must contain all tags in the list.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"tlsConfig\": {\n \"description\": \"TLS configuration to use on every scrape request\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tokenRef\": {\n \"description\": \"Consul ACL TokenRef, if not provided it will use the ACL from the local Consul Agent.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"server\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"digitalOceanSDConfigs\": {\n \"description\": \"DigitalOceanSDConfigs defines a list of DigitalOcean service discovery configurations.\",\n \"items\": {\n \"description\": \"DigitalOceanSDConfig allow retrieving scrape targets from DigitalOcean's Droplets API.\\nThis service discovery uses the public IPv4 address by default, by that can be changed with relabeling.\\nSee [here](https://docs.victoriametrics.com/sd_configs#digitalocean_sd_configs)\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header to use on every scrape request.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"followRedirects\": {\n \"description\": \"Configure whether HTTP requests follow HTTP 3xx redirects.\",\n \"type\": \"boolean\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"The port to scrape metrics from.\",\n \"type\": \"integer\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee [feature description](https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy)\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLS configuration to use on every scrape request\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"dnsSDConfigs\": {\n \"description\": \"DNSSDConfigs defines a list of DNS service discovery configurations.\",\n \"items\": {\n \"description\": \"DNSSDConfig allows specifying a set of DNS domain names which are periodically queried to discover a list of targets.\\nThe DNS servers to be contacted are read from /etc/resolv.conf.\\nSee [here](https://docs.victoriametrics.com/sd_configs#dns_sd_configs)\",\n \"properties\": {\n \"names\": {\n \"description\": \"A list of DNS domain names to be queried.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"port\": {\n \"description\": \"The port number used if the query type is not SRV\\nIgnored for SRV records\",\n \"type\": \"integer\"\n },\n \"type\": {\n \"enum\": [\n \"SRV\",\n \"A\",\n \"AAAA\",\n \"MX\"\n ],\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"names\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"ec2SDConfigs\": {\n \"description\": \"EC2SDConfigs defines a list of EC2 service discovery configurations.\",\n \"items\": {\n \"description\": \"EC2SDConfig allow retrieving scrape targets from AWS EC2 instances.\\nThe private IP address is used by default, but may be changed to the public IP address with relabeling.\\nThe IAM credentials used must have the ec2:DescribeInstances permission to discover scrape targets.\\nSee [here](https://docs.victoriametrics.com/sd_configs#ec2_sd_configs)\",\n \"properties\": {\n \"accessKey\": {\n \"description\": \"AccessKey is the AWS API key.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"filters\": {\n \"description\": \"Filters can be used optionally to filter the instance list by other criteria.\\nAvailable filter criteria can be found here:\\nhttps://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html\\nFilter API documentation: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Filter.html\",\n \"items\": {\n \"description\": \"EC2Filter is the configuration for filtering EC2 instances.\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"values\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"name\",\n \"values\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"port\": {\n \"description\": \"The port to scrape metrics from. If using the public IP address, this must\\ninstead be specified in the relabeling rule.\",\n \"type\": \"integer\"\n },\n \"region\": {\n \"description\": \"The AWS region\",\n \"type\": \"string\"\n },\n \"roleARN\": {\n \"description\": \"AWS Role ARN, an alternative to using AWS API keys.\",\n \"type\": \"string\"\n },\n \"secretKey\": {\n \"description\": \"SecretKey is the AWS API secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"fileSDConfigs\": {\n \"description\": \"FileSDConfigs defines a list of file service discovery configurations.\",\n \"items\": {\n \"description\": \"FileSDConfig defines a file service discovery configuration.\\nSee [here](https://docs.victoriametrics.com/sd_configs#file_sd_configs)\",\n \"properties\": {\n \"files\": {\n \"description\": \"List of files to be used for file discovery.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"files\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"gceSDConfigs\": {\n \"description\": \"GCESDConfigs defines a list of GCE service discovery configurations.\",\n \"items\": {\n \"description\": \"GCESDConfig configures scrape targets from GCP GCE instances.\\nThe private IP address is used by default, but may be changed to\\nthe public IP address with relabeling.\\nSee [here](https://docs.victoriametrics.com/sd_configs#gce_sd_configs)\\n\\n\\nThe GCE service discovery will load the Google Cloud credentials\\nfrom the file specified by the GOOGLE_APPLICATION_CREDENTIALS environment variable.\\nSee https://cloud.google.com/kubernetes-engine/docs/tutorials/authenticating-to-cloud-platform\",\n \"properties\": {\n \"filter\": {\n \"description\": \"Filter can be used optionally to filter the instance list by other criteria\\nSyntax of this filter is described in the filter query parameter section:\\nhttps://cloud.google.com/compute/docs/reference/latest/instances/list\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"The port to scrape metrics from. If using the public IP address, this must\\ninstead be specified in the relabeling rule.\",\n \"type\": \"integer\"\n },\n \"project\": {\n \"description\": \"The Google Cloud Project ID\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"tagSeparator\": {\n \"description\": \"The tag separator is used to separate the tags on concatenation\",\n \"type\": \"string\"\n },\n \"zone\": {\n \"description\": \"The zone of the scrape targets. If you need multiple zones use multiple GCESDConfigs.\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"project\",\n \"zone\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"httpSDConfigs\": {\n \"description\": \"HTTPSDConfigs defines a list of HTTP service discovery configurations.\",\n \"items\": {\n \"description\": \"HTTPSDConfig defines a HTTP service discovery configuration.\\nSee [here](https://docs.victoriametrics.com/sd_configs#http_sd_configs)\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization header to use on every scrape request.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth information to use on every scrape request.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee [feature description](https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy)\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"tlsConfig\": {\n \"description\": \"TLS configuration to use on every scrape request\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"url\": {\n \"description\": \"URL from which the targets are fetched.\",\n \"minLength\": 1,\n \"pattern\": \"^http(s)?://.+$\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"kubernetesSDConfigs\": {\n \"description\": \"KubernetesSDConfigs defines a list of Kubernetes service discovery configurations.\",\n \"items\": {\n \"description\": \"KubernetesSDConfig allows retrieving scrape targets from Kubernetes' REST API.\\nSee [here](https://docs.victoriametrics.com/sd_configs#kubernetes_sd_configs)\",\n \"properties\": {\n \"apiServer\": {\n \"description\": \"The API server address consisting of a hostname or IP address followed\\nby an optional port number.\\nIf left empty, assuming process is running inside\\nof the cluster. It will discover API servers automatically and use the pod's\\nCA certificate and bearer token file at /var/run/secrets/kubernetes.io/serviceaccount/.\",\n \"type\": \"string\"\n },\n \"attach_metadata\": {\n \"description\": \"AttachMetadata configures metadata attaching from service discovery\",\n \"properties\": {\n \"node\": {\n \"description\": \"Node instructs vmagent to add node specific metadata from service discovery\\nValid for roles: pod, endpoints, endpointslice.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"authorization\": {\n \"description\": \"Authorization header to use on every scrape request.\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth information to use on every scrape request.\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"followRedirects\": {\n \"description\": \"Configure whether HTTP requests follow HTTP 3xx redirects.\",\n \"type\": \"boolean\"\n },\n \"namespaces\": {\n \"description\": \"Optional namespace discovery. If omitted, discover targets across all namespaces.\",\n \"properties\": {\n \"names\": {\n \"description\": \"List of namespaces where to watch for resources.\\nIf empty and `ownNamespace` isn't true, watch for resources in all namespaces.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ownNamespace\": {\n \"description\": \"Includes the namespace in which the pod exists to the list of watched namespaces.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee [feature description](https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy)\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"role\": {\n \"description\": \"Role of the Kubernetes entities that should be discovered.\",\n \"type\": \"string\"\n },\n \"selectors\": {\n \"description\": \"Selector to select objects.\",\n \"items\": {\n \"description\": \"K8SSelectorConfig is Kubernetes Selector Config\",\n \"properties\": {\n \"field\": {\n \"type\": \"string\"\n },\n \"label\": {\n \"type\": \"string\"\n },\n \"role\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"role\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"role\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"tlsConfig\": {\n \"description\": \"TLS configuration to use on every scrape request\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"role\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"openstackSDConfigs\": {\n \"description\": \"OpenStackSDConfigs defines a list of OpenStack service discovery configurations.\",\n \"items\": {\n \"description\": \"OpenStackSDConfig allow retrieving scrape targets from OpenStack Nova instances.\\nSee [here](https://docs.victoriametrics.com/sd_configs#openstack_sd_configs)\",\n \"properties\": {\n \"allTenants\": {\n \"description\": \"Whether the service discovery should list all instances for all projects.\\nIt is only relevant for the 'instance' role and usually requires admin permissions.\",\n \"type\": \"boolean\"\n },\n \"applicationCredentialId\": {\n \"description\": \"ApplicationCredentialID\",\n \"type\": \"string\"\n },\n \"applicationCredentialName\": {\n \"description\": \"The ApplicationCredentialID or ApplicationCredentialName fields are\\nrequired if using an application credential to authenticate. Some providers\\nallow you to create an application credential to authenticate rather than a\\npassword.\",\n \"type\": \"string\"\n },\n \"applicationCredentialSecret\": {\n \"description\": \"The applicationCredentialSecret field is required if using an application\\ncredential to authenticate.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"availability\": {\n \"description\": \"Availability of the endpoint to connect to.\",\n \"enum\": [\n \"Public\",\n \"public\",\n \"Admin\",\n \"admin\",\n \"Internal\",\n \"internal\"\n ],\n \"type\": \"string\"\n },\n \"domainID\": {\n \"description\": \"DomainID\",\n \"type\": \"string\"\n },\n \"domainName\": {\n \"description\": \"At most one of domainId and domainName must be provided if using username\\nwith Identity V3. Otherwise, either are optional.\",\n \"type\": \"string\"\n },\n \"identityEndpoint\": {\n \"description\": \"IdentityEndpoint specifies the HTTP endpoint that is required to work with\\nthe Identity API of the appropriate version.\",\n \"type\": \"string\"\n },\n \"password\": {\n \"description\": \"Password for the Identity V2 and V3 APIs. Consult with your provider's\\ncontrol panel to discover your account's preferred method of authentication.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"port\": {\n \"description\": \"The port to scrape metrics from. If using the public IP address, this must\\ninstead be specified in the relabeling rule.\",\n \"type\": \"integer\"\n },\n \"projectID\": {\n \"description\": \" ProjectID\",\n \"type\": \"string\"\n },\n \"projectName\": {\n \"description\": \"The ProjectId and ProjectName fields are optional for the Identity V2 API.\\nSome providers allow you to specify a ProjectName instead of the ProjectId.\\nSome require both. Your provider's authentication policies will determine\\nhow these fields influence authentication.\",\n \"type\": \"string\"\n },\n \"region\": {\n \"description\": \"The OpenStack Region.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"role\": {\n \"description\": \"The OpenStack role of entities that should be discovered.\",\n \"enum\": [\n \"Instance\",\n \"instance\",\n \"Hypervisor\",\n \"hypervisor\"\n ],\n \"type\": \"string\"\n },\n \"tlsConfig\": {\n \"description\": \"TLS configuration to use on every scrape request\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"userid\": {\n \"description\": \"UserID\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username is required if using Identity V2 API. Consult with your provider's\\ncontrol panel to discover your account's username.\\nIn Identity V3, either userid or a combination of username\\nand domainId or domainName are needed\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"region\",\n \"role\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"relabelConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"staticConfigs\": {\n \"description\": \"StaticConfigs defines a list of static targets with a common label set.\",\n \"items\": {\n \"description\": \"StaticConfig defines a static configuration.\\nSee [here](https://docs.victoriametrics.com/sd_configs#static_configs)\",\n \"properties\": {\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels assigned to all metrics scraped from the targets.\",\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"targets\": {\n \"description\": \"List of targets for this static configuration.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Scrape Config\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Scrape Config", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMServiceScrape.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMServiceScrape.json new file mode 100644 index 00000000000..6db7f74c25a --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMServiceScrape.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMServiceScrape", + "schema": "{\n \"description\": \"VMServiceScrape is scrape configuration for endpoints associated with\\nkubernetes service,\\nit generates scrape configuration for vmagent based on selectors.\\nresult config will scrape service endpoints\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMServiceScrapeSpec defines the desired state of VMServiceScrape\",\n \"properties\": {\n \"attach_metadata\": {\n \"description\": \"AttachMetadata configures metadata attaching from service discovery\",\n \"properties\": {\n \"node\": {\n \"description\": \"Node instructs vmagent to add node specific metadata from service discovery\\nValid for roles: pod, endpoints, endpointslice.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"discoveryRole\": {\n \"description\": \"DiscoveryRole - defines kubernetes_sd role for objects discovery.\\nby default, its endpoints.\\ncan be changed to service or endpointslices.\\nnote, that with service setting, you have to use port: \\\"name\\\"\\nand cannot use targetPort for endpoints.\",\n \"enum\": [\n \"endpoints\",\n \"service\",\n \"endpointslices\"\n ],\n \"type\": \"string\"\n },\n \"endpoints\": {\n \"description\": \"A list of endpoints allowed as part of this ServiceScrape.\",\n \"items\": {\n \"description\": \"Endpoint defines a scrapeable endpoint serving metrics.\",\n \"properties\": {\n \"attach_metadata\": {\n \"description\": \"AttachMetadata configures metadata attaching from service discovery\",\n \"properties\": {\n \"node\": {\n \"description\": \"Node instructs vmagent to add node specific metadata from service discovery\\nValid for roles: pod, endpoints, endpointslice.\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n },\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Name of the port exposed at Service.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"relabelConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetPort\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"TargetPort\\nName or number of the pod port this endpoint refers to. Mutually exclusive with port.\",\n \"x-kubernetes-int-or-string\": true\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"jobLabel\": {\n \"description\": \"The label to use to retrieve the job name from.\",\n \"type\": \"string\"\n },\n \"namespaceSelector\": {\n \"description\": \"Selector to select which namespaces the Endpoints objects are discovered from.\",\n \"properties\": {\n \"any\": {\n \"description\": \"Boolean describing whether all namespaces are selected in contrast to a\\nlist restricting them.\",\n \"type\": \"boolean\"\n },\n \"matchNames\": {\n \"description\": \"List of namespace names.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"podTargetLabels\": {\n \"description\": \"PodTargetLabels transfers labels on the Kubernetes Pod onto the target.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"selector\": {\n \"description\": \"Selector to select Endpoints objects by corresponding Service labels.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetLabels\": {\n \"description\": \"TargetLabels transfers labels on the Kubernetes Service onto the target.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"title\": \"VM Service Scrape\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Service Scrape", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMSingle.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMSingle.json new file mode 100644 index 00000000000..e6f2f7be9cf --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMSingle.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMSingle", + "schema": "{\n \"description\": \"VMSingle is fast, cost-effective and scalable time-series database.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMSingleSpec defines the desired state of VMSingle\",\n \"properties\": {\n \"affinity\": {\n \"description\": \"Affinity If specified, the pod's scheduling constraints.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"configMaps\": {\n \"description\": \"ConfigMaps is a list of ConfigMaps in the same namespace as the VMSingle\\nobject, which shall be mounted into the VMSingle Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"containers\": {\n \"description\": \"Containers property allows to inject additions sidecars or to patch existing containers.\\nIt can be useful for proxies, backup, etc.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dnsConfig\": {\n \"description\": \"Specifies the DNS parameters of a pod.\\nParameters specified here will be merged to the generated DNS\\nconfiguration based on DNSPolicy.\",\n \"items\": {\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"properties\": {\n \"nameservers\": {\n \"description\": \"A list of DNS name server IP addresses.\\nThis will be appended to the base nameservers generated from DNSPolicy.\\nDuplicated nameservers will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"options\": {\n \"description\": \"A list of DNS resolver options.\\nThis will be merged with the base options generated from DNSPolicy.\\nDuplicated entries will be removed. Resolution options given in Options\\nwill override those that appear in the base DNSPolicy.\",\n \"items\": {\n \"description\": \"PodDNSConfigOption defines DNS resolver options of a pod.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Required.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"searches\": {\n \"description\": \"A list of DNS search domains for host-name lookup.\\nThis will be appended to the base search paths generated from DNSPolicy.\\nDuplicated search paths will be removed.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"dnsPolicy\": {\n \"description\": \"DNSPolicy sets DNS policy for the pod\",\n \"type\": \"string\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"ExtraArgs that will be passed to VMSingle pod\\nfor example remoteWrite.tmpDataPath: /tmp\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"description\": \"ExtraEnvs that will be added to VMSingle pod\",\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"format\": \"textarea\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hostAliases\": {\n \"description\": \"HostAliases provides mapping for ip and hostname,\\nthat would be propagated to pod,\\ncannot be used with HostNetwork.\",\n \"items\": {\n \"description\": \"HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the\\npod's hosts file.\",\n \"properties\": {\n \"hostnames\": {\n \"description\": \"Hostnames for the above IP address.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"ip\": {\n \"description\": \"IP address of the host file entry.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"ip\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"hostNetwork\": {\n \"description\": \"HostNetwork controls whether the pod may use the node network namespace\",\n \"type\": \"boolean\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMSingle\\nif no specified operator uses default config version\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"imagePullSecrets\": {\n \"description\": \"ImagePullSecrets An optional list of references to secrets in the same namespace\\nto use for pulling images from registries\\nsee https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod\",\n \"items\": {\n \"description\": \"LocalObjectReference contains enough information to let you locate the\\nreferenced object inside the same namespace.\",\n \"properties\": {\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"type\": \"array\"\n },\n \"initContainers\": {\n \"description\": \"InitContainers allows adding initContainers to the pod definition. Those can be used to e.g.\\nfetch secrets for injection into the vmSingle configuration from external sources. Any\\nerrors during the execution of an initContainer will lead to a restart of the Pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/\\nUsing initContainers for any use case other then secret fetching is entirely outside the scope\\nof what the maintainers will support and by doing so, you accept that this behaviour may break\\nat any time without notice.\",\n \"items\": {\n \"description\": \"A single application container that you want to run within a pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"insertPorts\": {\n \"description\": \"InsertPorts - additional listen ports for data ingestion.\",\n \"properties\": {\n \"graphitePort\": {\n \"description\": \"GraphitePort listen port\",\n \"type\": \"string\"\n },\n \"influxPort\": {\n \"description\": \"InfluxPort listen port\",\n \"type\": \"string\"\n },\n \"openTSDBHTTPPort\": {\n \"description\": \"OpenTSDBHTTPPort for http connections.\",\n \"type\": \"string\"\n },\n \"openTSDBPort\": {\n \"description\": \"OpenTSDBPort for tcp and udp listen\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"license\": {\n \"description\": \"License allows to configure license key to be used for enterprise features.\\nUsing license key is supported starting from VictoriaMetrics v1.94.0.\\nSee [here](https://docs.victoriametrics.com/enterprise)\",\n \"properties\": {\n \"key\": {\n \"description\": \"Enterprise license key. This flag is available only in [VictoriaMetrics enterprise](https://docs.victoriametrics.com/enterprise).\\nTo request a trial license, [go to](https://victoriametrics.com/products/enterprise/trial)\",\n \"type\": \"string\"\n },\n \"keyRef\": {\n \"description\": \"KeyRef is reference to secret with license key for enterprise features.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"livenessProbe\": {\n \"description\": \"LivenessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMSingle to be configured with.\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for victoria metrics single to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"nodeSelector\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"NodeSelector Define which Nodes the Pods are scheduled on.\",\n \"type\": \"object\"\n },\n \"paused\": {\n \"description\": \"Paused If set to true all actions on the underlying managed objects are not\\ngoing to be performed, except for delete actions.\",\n \"type\": \"boolean\"\n },\n \"podMetadata\": {\n \"description\": \"PodMetadata configures Labels and Annotations which are propagated to the VMSingle pods.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"port\": {\n \"description\": \"Port listen port\",\n \"type\": \"string\"\n },\n \"priorityClassName\": {\n \"description\": \"PriorityClassName assigned to the Pods\",\n \"type\": \"string\"\n },\n \"readinessGates\": {\n \"description\": \"ReadinessGates defines pod readiness gates\",\n \"items\": {\n \"description\": \"PodReadinessGate contains the reference to a pod condition\",\n \"properties\": {\n \"conditionType\": {\n \"description\": \"ConditionType refers to a condition in the pod's condition list with matching type.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"conditionType\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"readinessProbe\": {\n \"description\": \"ReadinessProbe that will be added CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"removePvcAfterDelete\": {\n \"description\": \"RemovePvcAfterDelete - if true, controller adds ownership to pvc\\nand after VMSingle objest deletion - pvc will be garbage collected\\nby controller manager\",\n \"type\": \"boolean\"\n },\n \"replicaCount\": {\n \"description\": \"ReplicaCount is the expected size of the VMSingle\\nit can be 0 or 1\\nif you need more - use vm cluster\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not defined default resources from operator config will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"retentionPeriod\": {\n \"description\": \"RetentionPeriod for the stored metrics\\nNote VictoriaMetrics has data/ and indexdb/ folders\\nmetrics from data/ removed eventually as soon as partition leaves retention period\\nreverse index data at indexdb rotates once at the half of configured [retention period](https://docs.victoriametrics.com/Single-server-VictoriaMetrics/#retention)\",\n \"type\": \"string\"\n },\n \"revisionHistoryLimitCount\": {\n \"description\": \"The number of old ReplicaSets to retain to allow rollback in deployment or\\nmaximum number of revisions that will be maintained in the StatefulSet's revision history.\\nDefaults to 10.\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"runtimeClassName\": {\n \"description\": \"RuntimeClassName - defines runtime class for kubernetes pod.\\nhttps://kubernetes.io/docs/concepts/containers/runtime-class/\",\n \"type\": \"string\"\n },\n \"schedulerName\": {\n \"description\": \"SchedulerName - defines kubernetes scheduler name\",\n \"type\": \"string\"\n },\n \"secrets\": {\n \"description\": \"Secrets is a list of Secrets in the same namespace as the VMSingle\\nobject, which shall be mounted into the VMSingle Pods.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"securityContext\": {\n \"description\": \"SecurityContext holds pod-level security attributes and common container settings.\\nThis defaults to the default PodSecurityContext.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"serviceAccountName\": {\n \"description\": \"ServiceAccountName is the name of the ServiceAccount to use to run the\\nVMSingle Pods.\",\n \"type\": \"string\"\n },\n \"serviceScrapeSpec\": {\n \"description\": \"ServiceScrapeSpec that will be added to vmsingle VMServiceScrape spec\",\n \"format\": \"textarea\",\n \"required\": [\n \"endpoints\"\n ],\n \"type\": \"string\"\n },\n \"serviceSpec\": {\n \"description\": \"ServiceSpec that will be added to vmsingle service spec\",\n \"properties\": {\n \"metadata\": {\n \"description\": \"EmbeddedObjectMetadata defines objectMeta for additional service.\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"spec\": {\n \"description\": \"ServiceSpec describes the attributes that a user creates on a service.\\nMore info: https://kubernetes.io/docs/concepts/services-networking/service/\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"useAsDefault\": {\n \"description\": \"UseAsDefault applies changes from given service definition to the main object Service\\nChanging from headless service to clusterIP or loadbalancer may break cross-component communication\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"spec\"\n ],\n \"type\": \"object\"\n },\n \"startupProbe\": {\n \"description\": \"StartupProbe that will be added to CRD pod\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"storage\": {\n \"description\": \"Storage is the definition of how storage will be used by the VMSingle\\nby default it`s empty dir\",\n \"properties\": {\n \"accessModes\": {\n \"description\": \"accessModes contains the desired access modes the volume should have.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"dataSource\": {\n \"description\": \"dataSource field can be used to specify either:\\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\\n* An existing PVC (PersistentVolumeClaim)\\nIf the provisioner or an external controller can support the specified data source,\\nit will create a new volume based on the contents of the specified data source.\\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dataSourceRef\": {\n \"description\": \"dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\\nvolume is desired. This may be any object from a non-empty API group (non\\ncore object) or a PersistentVolumeClaim object.\\nWhen this field is specified, volume binding will only succeed if the type of\\nthe specified object matches some installed volume populator or dynamic\\nprovisioner.\\nThis field will replace the functionality of the dataSource field and as such\\nif both fields are non-empty, they must have the same value. For backwards\\ncompatibility, when namespace isn't specified in dataSourceRef,\\nboth fields (dataSource and dataSourceRef) will be set to the same\\nvalue automatically if one of them is empty and the other is non-empty.\\nWhen namespace is specified in dataSourceRef,\\ndataSource isn't set to the same value and must be empty.\\nThere are three important differences between dataSource and dataSourceRef:\\n* While dataSource only allows two specific types of objects, dataSourceRef\\n allows any non-core object, as well as PersistentVolumeClaim objects.\\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\\n preserves all values, and generates an error if a disallowed value is\\n specified.\\n* While dataSource only allows local objects, dataSourceRef allows objects\\n in any namespaces.\\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"properties\": {\n \"apiGroup\": {\n \"description\": \"APIGroup is the group for the resource being referenced.\\nIf APIGroup is not specified, the specified Kind must be in the core API group.\\nFor any other third-party types, APIGroup is required.\",\n \"type\": \"string\"\n },\n \"kind\": {\n \"description\": \"Kind is the type of resource being referenced\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name is the name of resource being referenced\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace is the namespace of resource being referenced\\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"resources\": {\n \"description\": \"resources represents the minimum resources the volume should have.\\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\\nthat are lower than previous value but must still be higher than capacity recorded in the\\nstatus field of the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\",\n \"properties\": {\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"selector\": {\n \"description\": \"selector is a label query over volumes to consider for binding.\",\n \"properties\": {\n \"matchExpressions\": {\n \"description\": \"matchExpressions is a list of label selector requirements. The requirements are ANDed.\",\n \"items\": {\n \"description\": \"A label selector requirement is a selector that contains values, a key, and an operator that\\nrelates the key and values.\",\n \"properties\": {\n \"key\": {\n \"description\": \"key is the label key that the selector applies to.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"operator represents a key's relationship to a set of values.\\nValid operators are In, NotIn, Exists and DoesNotExist.\",\n \"type\": \"string\"\n },\n \"values\": {\n \"description\": \"values is an array of string values. If the operator is In or NotIn,\\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\\nthe values array must be empty. This array is replaced during a strategic\\nmerge patch.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n }\n },\n \"required\": [\n \"key\",\n \"operator\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-type\": \"atomic\"\n },\n \"matchLabels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\\nmap is equivalent to an element of matchExpressions, whose key field is \\\"key\\\", the\\noperator is \\\"In\\\", and the values array contains only \\\"value\\\". The requirements are ANDed.\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"storageClassName\": {\n \"description\": \"storageClassName is the name of the StorageClass required by the claim.\\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\",\n \"type\": \"string\"\n },\n \"volumeAttributesClassName\": {\n \"description\": \"volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.\\nIf specified, the CSI driver will create or update the volume with the attributes defined\\nin the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,\\nit can be changed after the claim is created. An empty string value means that no VolumeAttributesClass\\nwill be applied to the claim but it's not allowed to reset this field to empty string once it is set.\\nIf unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass\\nwill be set by the persistentvolume controller if it exists.\\nIf the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be\\nset to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource\\nexists.\\nMore info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/\\n(Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled.\",\n \"type\": \"string\"\n },\n \"volumeMode\": {\n \"description\": \"volumeMode defines what type of volume is required by the claim.\\nValue of Filesystem is implied when not included in claim spec.\",\n \"type\": \"string\"\n },\n \"volumeName\": {\n \"description\": \"volumeName is the binding reference to the PersistentVolume backing this claim.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"storageDataPath\": {\n \"description\": \"StorageDataPath disables spec.storage option and overrides arg for victoria-metrics binary --storageDataPath,\\nits users responsibility to mount proper device into given path.\",\n \"type\": \"string\"\n },\n \"storageMetadata\": {\n \"description\": \"StorageMeta defines annotations and labels attached to PVC for given vmsingle CR\",\n \"properties\": {\n \"annotations\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Annotations is an unstructured key value map stored with a resource that may be\\nset by external tools to store and retrieve arbitrary metadata. They are not\\nqueryable and should be preserved when modifying objects.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\",\n \"type\": \"object\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels Map of string keys and values that can be used to organize and categorize\\n(scope and select) objects. May match selectors of replication controllers\\nand services.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name must be unique within a namespace. Is required when creating resources, although\\nsome resources may allow a client to request the generation of an appropriate name\\nautomatically. Name is primarily intended for creation idempotence and configuration\\ndefinition.\\nCannot be updated.\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"streamAggrConfig\": {\n \"description\": \"StreamAggrConfig defines stream aggregation configuration for VMSingle\",\n \"properties\": {\n \"configmap\": {\n \"description\": \"ConfigMap with stream aggregation rules\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"dedupInterval\": {\n \"description\": \"Allows setting different de-duplication intervals per each configured remote storage\",\n \"type\": \"string\"\n },\n \"dropInput\": {\n \"description\": \"Allow drop all the input samples after the aggregation\",\n \"type\": \"boolean\"\n },\n \"dropInputLabels\": {\n \"description\": \"labels to drop from samples for aggregator before stream de-duplication and aggregation\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ignoreFirstIntervals\": {\n \"type\": \"integer\"\n },\n \"ignoreOldSamples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"keepInput\": {\n \"description\": \"Allows writing both raw and aggregate data\",\n \"type\": \"boolean\"\n },\n \"rules\": {\n \"description\": \"Stream aggregation rules\",\n \"items\": {\n \"description\": \"StreamAggrRule defines the rule in stream aggregation config\",\n \"properties\": {\n \"by\": {\n \"description\": \"By is an optional list of labels for grouping input series.\\n\\n\\nSee also Without.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"dedup_interval\": {\n \"description\": \"DedupInterval is an optional interval for deduplication.\",\n \"type\": \"string\"\n },\n \"drop_input_labels\": {\n \"description\": \"DropInputLabels is an optional list with labels, which must be dropped before further processing of input samples.\\n\\n\\nLabels are dropped before de-duplication and aggregation.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"flush_on_shutdown\": {\n \"description\": \"FlushOnShutdown defines whether to flush the aggregation state on process termination\\nor config reload. Is `false` by default.\\nIt is not recommended changing this setting, unless unfinished aggregations states\\nare preferred to missing data points.\",\n \"type\": \"boolean\"\n },\n \"ignore_first_intervals\": {\n \"type\": \"integer\"\n },\n \"ignore_old_samples\": {\n \"description\": \"IgnoreOldSamples instructs to ignore samples with old timestamps outside the current aggregation interval.\",\n \"type\": \"boolean\"\n },\n \"input_relabel_configs\": {\n \"description\": \"InputRelabelConfigs is an optional relabeling rules, which are applied on the input\\nbefore aggregation.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"interval\": {\n \"description\": \"Interval is the interval between aggregations.\",\n \"type\": \"string\"\n },\n \"keep_metric_names\": {\n \"description\": \"KeepMetricNames instructs to leave metric names as is for the output time series without adding any suffix.\",\n \"type\": \"boolean\"\n },\n \"match\": {\n \"description\": \"Match is a label selector (or list of label selectors) for filtering time series for the given selector.\\n\\n\\nIf the match isn't set, then all the input time series are processed.\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"no_align_flush_to_interval\": {\n \"description\": \"NoAlignFlushToInterval disables aligning of flushes to multiples of Interval.\\nBy default flushes are aligned to Interval.\",\n \"type\": \"boolean\"\n },\n \"output_relabel_configs\": {\n \"description\": \"OutputRelabelConfigs is an optional relabeling rules, which are applied\\non the aggregated output before being sent to remote storage.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"outputs\": {\n \"description\": \"Outputs is a list of output aggregate functions to produce.\\n\\n\\nThe following names are allowed:\\n\\n\\n- total - aggregates input counters\\n- increase - counts the increase over input counters\\n- count_series - counts the input series\\n- count_samples - counts the input samples\\n- sum_samples - sums the input samples\\n- last - the last biggest sample value\\n- min - the minimum sample value\\n- max - the maximum sample value\\n- avg - the average value across all the samples\\n- stddev - standard deviation across all the samples\\n- stdvar - standard variance across all the samples\\n- histogram_bucket - creates VictoriaMetrics histogram for input samples\\n- quantiles(phi1, ..., phiN) - quantiles' estimation for phi in the range [0..1]\\n\\n\\nThe output time series will have the following names:\\n\\n\\n input_name:aggr_\\u003cinterval\\u003e_\\u003coutput\\u003e\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"staleness_interval\": {\n \"description\": \"Staleness interval is interval after which the series state will be reset if no samples have been sent during it.\\nThe parameter is only relevant for outputs: total, total_prometheus, increase, increase_prometheus and histogram_bucket.\",\n \"type\": \"string\"\n },\n \"without\": {\n \"description\": \"Without is an optional list of labels, which must be excluded when grouping input series.\\n\\n\\nSee also By.\\n\\n\\nIf neither By nor Without are set, then the Outputs are calculated\\nindividually per each input time series.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"interval\",\n \"outputs\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"terminationGracePeriodSeconds\": {\n \"description\": \"TerminationGracePeriodSeconds period for container graceful termination\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"tolerations\": {\n \"description\": \"Tolerations If specified, the pod's tolerations.\",\n \"items\": {\n \"description\": \"The pod this Toleration is attached to tolerates any taint that matches\\nthe triple \\u003ckey,value,effect\\u003e using the matching operator \\u003coperator\\u003e.\",\n \"properties\": {\n \"effect\": {\n \"description\": \"Effect indicates the taint effect to match. Empty means match all taint effects.\\nWhen specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\",\n \"type\": \"string\"\n },\n \"key\": {\n \"description\": \"Key is the taint key that the toleration applies to. Empty means match all taint keys.\\nIf the key is empty, operator must be Exists; this combination means to match all values and all keys.\",\n \"type\": \"string\"\n },\n \"operator\": {\n \"description\": \"Operator represents a key's relationship to the value.\\nValid operators are Exists and Equal. Defaults to Equal.\\nExists is equivalent to wildcard for value, so that a pod can\\ntolerate all taints of a particular category.\",\n \"type\": \"string\"\n },\n \"tolerationSeconds\": {\n \"description\": \"TolerationSeconds represents the period of time the toleration (which must be\\nof effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,\\nit is not set, which means tolerate the taint forever (do not evict). Zero and\\nnegative values will be treated as 0 (evict immediately) by the system.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"value\": {\n \"description\": \"Value is the taint value the toleration matches to.\\nIf the operator is Exists, the value should be empty, otherwise just a regular string.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"topologySpreadConstraints\": {\n \"description\": \"TopologySpreadConstraints embedded kubernetes pod configuration option,\\ncontrols how pods are spread across your cluster among failure-domains\\nsuch as regions, zones, nodes, and other user-defined topology domains\\nhttps://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/\",\n \"items\": {\n \"description\": \"TopologySpreadConstraint specifies how to spread matching pods among the given topology.\",\n \"format\": \"textarea\",\n \"required\": [\n \"maxSkew\",\n \"topologyKey\",\n \"whenUnsatisfiable\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"useStrictSecurity\": {\n \"description\": \"UseStrictSecurity enables strict security mode for component\\nit restricts disk writes access\\nuses non-root user out of the box\\ndrops not needed security permissions\",\n \"type\": \"boolean\"\n },\n \"vmBackup\": {\n \"description\": \"VMBackup configuration for backup\",\n \"properties\": {\n \"acceptEULA\": {\n \"description\": \"AcceptEULA accepts enterprise feature usage, must be set to true.\\notherwise backupmanager cannot be added to single/cluster version.\\nhttps://victoriametrics.com/legal/esa/\",\n \"type\": \"boolean\"\n },\n \"concurrency\": {\n \"description\": \"Defines number of concurrent workers. Higher concurrency may reduce backup duration (default 10)\",\n \"format\": \"int32\",\n \"type\": \"integer\"\n },\n \"credentialsSecret\": {\n \"description\": \"CredentialsSecret is secret in the same namespace for access to remote storage\\nThe secret is mounted into /etc/vm/creds.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"customS3Endpoint\": {\n \"description\": \"Custom S3 endpoint for use with S3-compatible storages (e.g. MinIO). S3 is used if not set\",\n \"type\": \"string\"\n },\n \"destination\": {\n \"description\": \"Defines destination for backup\",\n \"type\": \"string\"\n },\n \"destinationDisableSuffixAdd\": {\n \"description\": \"DestinationDisableSuffixAdd - disables suffix adding for cluster version backups\\neach vmstorage backup must have unique backup folder\\nso operator adds POD_NAME as suffix for backup destination folder.\",\n \"type\": \"boolean\"\n },\n \"disableDaily\": {\n \"description\": \"Defines if daily backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableHourly\": {\n \"description\": \"Defines if hourly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableMonthly\": {\n \"description\": \"Defines if monthly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"disableWeekly\": {\n \"description\": \"Defines if weekly backups disabled (default false)\",\n \"type\": \"boolean\"\n },\n \"extraArgs\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"extra args like maxBytesPerSecond default 0\",\n \"type\": \"object\"\n },\n \"extraEnvs\": {\n \"items\": {\n \"description\": \"EnvVar represents an environment variable present in a Container.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name of the environment variable. Must be a C_IDENTIFIER.\",\n \"type\": \"string\"\n },\n \"value\": {\n \"description\": \"Variable references $(VAR_NAME) are expanded\\nusing the previously defined environment variables in the container and\\nany service environment variables. If a variable cannot be resolved,\\nthe reference in the input string will be unchanged. Double $$ are reduced\\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\\n\\\"$$(VAR_NAME)\\\" will produce the string literal \\\"$(VAR_NAME)\\\".\\nEscaped references will never be expanded, regardless of whether the variable\\nexists or not.\\nDefaults to \\\"\\\".\",\n \"type\": \"string\"\n },\n \"valueFrom\": {\n \"description\": \"Source for the environment variable's value. Cannot be used if value is not empty.\",\n \"properties\": {\n \"configMapKeyRef\": {\n \"description\": \"Selects a key of a ConfigMap.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"fieldRef\": {\n \"description\": \"Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['\\u003cKEY\\u003e']`, `metadata.annotations['\\u003cKEY\\u003e']`,\\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\",\n \"properties\": {\n \"apiVersion\": {\n \"description\": \"Version of the schema the FieldPath is written in terms of, defaults to \\\"v1\\\".\",\n \"type\": \"string\"\n },\n \"fieldPath\": {\n \"description\": \"Path of the field to select in the specified API version.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"fieldPath\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"resourceFieldRef\": {\n \"description\": \"Selects a resource of the container: only resources limits and requests\\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\",\n \"properties\": {\n \"containerName\": {\n \"description\": \"Container name: required for volumes, optional for env vars\",\n \"type\": \"string\"\n },\n \"divisor\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"description\": \"Specifies the output format of the exposed resources, defaults to \\\"1\\\"\",\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"resource\": {\n \"description\": \"Required: resource to select\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"resource\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secretKeyRef\": {\n \"description\": \"Selects a key of a secret in the pod's namespace\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"image\": {\n \"description\": \"Image - docker image settings for VMBackuper\",\n \"properties\": {\n \"pullPolicy\": {\n \"description\": \"PullPolicy describes how to pull docker image\",\n \"type\": \"string\"\n },\n \"repository\": {\n \"description\": \"Repository contains name of docker image + it's repository if needed\",\n \"type\": \"string\"\n },\n \"tag\": {\n \"description\": \"Tag contains desired docker image version\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"logFormat\": {\n \"description\": \"LogFormat for VMBackup to be configured with.\\ndefault or json\",\n \"enum\": [\n \"default\",\n \"json\"\n ],\n \"type\": \"string\"\n },\n \"logLevel\": {\n \"description\": \"LogLevel for VMBackup to be configured with.\",\n \"enum\": [\n \"INFO\",\n \"WARN\",\n \"ERROR\",\n \"FATAL\",\n \"PANIC\"\n ],\n \"type\": \"string\"\n },\n \"port\": {\n \"description\": \"Port for health check connections\",\n \"type\": \"string\"\n },\n \"resources\": {\n \"description\": \"Resources container resource request and limits, https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\\nif not defined default resources from operator config will be used\",\n \"properties\": {\n \"claims\": {\n \"description\": \"Claims lists the names of resources, defined in spec.resourceClaims,\\nthat are used by this container.\\n\\n\\nThis is an alpha field and requires enabling the\\nDynamicResourceAllocation feature gate.\\n\\n\\nThis field is immutable. It can only be set for containers.\",\n \"items\": {\n \"description\": \"ResourceClaim references one entry in PodSpec.ResourceClaims.\",\n \"properties\": {\n \"name\": {\n \"description\": \"Name must match the name of one entry in pod.spec.resourceClaims of\\nthe Pod where this field is used. It makes that resource available\\ninside a container.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\",\n \"x-kubernetes-list-map-keys\": [\n \"name\"\n ],\n \"x-kubernetes-list-type\": \"map\"\n },\n \"limits\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Limits describes the maximum amount of compute resources allowed.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n },\n \"requests\": {\n \"additionalProperties\": {\n \"anyOf\": [\n {\n \"type\": \"integer\"\n },\n {\n \"type\": \"string\"\n }\n ],\n \"pattern\": \"^(\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\\\+|-)?(([0-9]+(\\\\.[0-9]*)?)|(\\\\.[0-9]+))))?$\",\n \"x-kubernetes-int-or-string\": true\n },\n \"description\": \"Requests describes the minimum amount of compute resources required.\\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\\notherwise to an implementation-defined value. Requests cannot exceed Limits.\\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\",\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"restore\": {\n \"description\": \"Restore Allows to enable restore options for pod\\nRead [more](https://docs.victoriametrics.com/vmbackupmanager#restore-commands)\",\n \"properties\": {\n \"onStart\": {\n \"description\": \"OnStart defines configuration for restore on pod start\",\n \"properties\": {\n \"enabled\": {\n \"description\": \"Enabled defines if restore on start enabled\",\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"snapshotCreateURL\": {\n \"description\": \"SnapshotCreateURL overwrites url for snapshot create\",\n \"type\": \"string\"\n },\n \"snapshotDeleteURL\": {\n \"description\": \"SnapShotDeleteURL overwrites url for snapshot delete\",\n \"type\": \"string\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the vmbackupmanager container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"volumeMounts\": {\n \"description\": \"VolumeMounts allows configuration of additional VolumeMounts on the output Deployment definition.\\nVolumeMounts specified will be appended to other VolumeMounts in the VMSingle container,\\nthat are generated as a result of StorageSpec objects.\",\n \"items\": {\n \"description\": \"VolumeMount describes a mounting of a Volume within a container.\",\n \"properties\": {\n \"mountPath\": {\n \"description\": \"Path within the container at which the volume should be mounted. Must\\nnot contain ':'.\",\n \"type\": \"string\"\n },\n \"mountPropagation\": {\n \"description\": \"mountPropagation determines how mounts are propagated from the host\\nto container and the other way around.\\nWhen not set, MountPropagationNone is used.\\nThis field is beta in 1.10.\\nWhen RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified\\n(which defaults to None).\",\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"This must match the Name of a Volume.\",\n \"type\": \"string\"\n },\n \"readOnly\": {\n \"description\": \"Mounted read-only if true, read-write otherwise (false or unspecified).\\nDefaults to false.\",\n \"type\": \"boolean\"\n },\n \"recursiveReadOnly\": {\n \"description\": \"RecursiveReadOnly specifies whether read-only mounts should be handled\\nrecursively.\\n\\n\\nIf ReadOnly is false, this field has no meaning and must be unspecified.\\n\\n\\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made\\nrecursively read-only. If this field is set to IfPossible, the mount is made\\nrecursively read-only, if it is supported by the container runtime. If this\\nfield is set to Enabled, the mount is made recursively read-only if it is\\nsupported by the container runtime, otherwise the pod will not be started and\\nan error will be generated to indicate the reason.\\n\\n\\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to\\nNone (or be unspecified, which defaults to None).\\n\\n\\nIf this field is not specified, it is treated as an equivalent of Disabled.\",\n \"type\": \"string\"\n },\n \"subPath\": {\n \"description\": \"Path within the volume from which the container's volume should be mounted.\\nDefaults to \\\"\\\" (volume's root).\",\n \"type\": \"string\"\n },\n \"subPathExpr\": {\n \"description\": \"Expanded path within the volume from which the container's volume should be mounted.\\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\\nDefaults to \\\"\\\" (volume's root).\\nSubPathExpr and SubPath are mutually exclusive.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"mountPath\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"volumes\": {\n \"description\": \"Volumes allows configuration of additional volumes on the output deploy definition.\\nVolumes specified will be appended to other volumes that are generated as a result of\\nStorageSpec objects.\",\n \"items\": {\n \"description\": \"Volume represents a named volume in a pod that may be accessed by any container in the pod.\",\n \"format\": \"textarea\",\n \"required\": [\n \"name\"\n ],\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"retentionPeriod\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Single\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Single", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMStaticScrape.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMStaticScrape.json new file mode 100644 index 00000000000..dcd001f2e8f --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMStaticScrape.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMStaticScrape", + "schema": "{\n \"description\": \"VMStaticScrape defines static targets configuration for scraping.\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMStaticScrapeSpec defines the desired state of VMStaticScrape.\",\n \"properties\": {\n \"jobName\": {\n \"description\": \"JobName name of job.\",\n \"type\": \"string\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targetEndpoints\": {\n \"description\": \"A list of target endpoints to scrape metrics from.\",\n \"items\": {\n \"description\": \"TargetEndpoint defines single static target endpoint.\",\n \"properties\": {\n \"authorization\": {\n \"description\": \"Authorization with http header Authorization\",\n \"properties\": {\n \"credentials\": {\n \"description\": \"Reference to the secret with value for authorization\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"credentialsFile\": {\n \"description\": \"File with value for authorization\",\n \"type\": \"string\"\n },\n \"type\": {\n \"description\": \"Type of authorization, default to bearer\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"basicAuth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearerTokenFile\": {\n \"description\": \"File to read bearer token for scraping targets.\",\n \"type\": \"string\"\n },\n \"bearerTokenSecret\": {\n \"description\": \"Secret to mount to read bearer token for scraping targets. The secret\\nneeds to be in the same namespace as the scrape object and accessible by\\nthe victoria-metrics operator.\",\n \"nullable\": true,\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"follow_redirects\": {\n \"description\": \"FollowRedirects controls redirects for scraping.\",\n \"type\": \"boolean\"\n },\n \"honorLabels\": {\n \"description\": \"HonorLabels chooses the metric's labels on collisions with target labels.\",\n \"type\": \"boolean\"\n },\n \"honorTimestamps\": {\n \"description\": \"HonorTimestamps controls whether vmagent respects the timestamps present in scraped data.\",\n \"type\": \"boolean\"\n },\n \"interval\": {\n \"description\": \"Interval at which metrics should be scraped\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels static labels for targets.\",\n \"type\": \"object\"\n },\n \"max_scrape_size\": {\n \"description\": \"MaxScrapeSize defines a maximum size of scraped data for a job\",\n \"type\": \"string\"\n },\n \"metricRelabelConfigs\": {\n \"description\": \"MetricRelabelConfigs to apply to samples after scrapping.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"oauth2\": {\n \"description\": \"OAuth2 defines auth configuration\",\n \"properties\": {\n \"client_id\": {\n \"description\": \"The secret or configmap containing the OAuth2 client id\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"client_secret\": {\n \"description\": \"The secret containing the OAuth2 client secret\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"client_secret_file\": {\n \"description\": \"ClientSecretFile defines path for client secret file.\",\n \"type\": \"string\"\n },\n \"endpoint_params\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Parameters to append to the token URL\",\n \"type\": \"object\"\n },\n \"scopes\": {\n \"description\": \"OAuth2 scopes used for the token request\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"token_url\": {\n \"description\": \"The URL to fetch the token from\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"client_id\",\n \"token_url\"\n ],\n \"type\": \"object\"\n },\n \"params\": {\n \"additionalProperties\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"description\": \"Optional HTTP URL parameters\",\n \"type\": \"object\"\n },\n \"path\": {\n \"description\": \"HTTP path to scrape for metrics.\",\n \"type\": \"string\"\n },\n \"proxyURL\": {\n \"description\": \"ProxyURL eg http://proxyserver:2195 Directs scrapes to proxy through this endpoint.\",\n \"type\": \"string\"\n },\n \"relabelConfigs\": {\n \"description\": \"RelabelConfigs to apply to samples during service discovery.\",\n \"items\": {\n \"description\": \"RelabelConfig allows dynamic rewriting of the label set\\nMore info: https://docs.victoriametrics.com/#relabeling\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform based on regex matching. Default is 'replace'\",\n \"type\": \"string\"\n },\n \"if\": {\n \"description\": \"If represents metricsQL match expression (or list of expressions): '{__name__=~\\\"foo_.*\\\"}'\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"Labels is used together with Match for `action: graphite`\",\n \"type\": \"object\"\n },\n \"match\": {\n \"description\": \"Match is used together with Labels for `action: graphite`\",\n \"type\": \"string\"\n },\n \"modulus\": {\n \"description\": \"Modulus to take of the hash of the source label values.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"regex\": {\n \"description\": \"Regular expression against which the extracted value is matched. Default is '(.*)'\\nvictoriaMetrics supports multiline regex joined with |\\nhttps://docs.victoriametrics.com/vmagent/#relabeling-enhancements\",\n \"format\": \"textarea\",\n \"type\": \"string\"\n },\n \"replacement\": {\n \"description\": \"Replacement value against which a regex replace is performed if the\\nregular expression matches. Regex capture groups are available. Default is '$1'\",\n \"type\": \"string\"\n },\n \"separator\": {\n \"description\": \"Separator placed between concatenated source label values. default is ';'.\",\n \"type\": \"string\"\n },\n \"sourceLabels\": {\n \"description\": \"The source labels select values from existing labels. Their content is concatenated\\nusing the configured separator and matched against the configured regular expression\\nfor the replace, keep, and drop actions.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"source_labels\": {\n \"description\": \"UnderScoreSourceLabels - additional form of source labels source_labels\\nfor compatibility with original relabel config.\\nif set both sourceLabels and source_labels, sourceLabels has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"targetLabel\": {\n \"description\": \"Label to which the resulting value is written in a replace action.\\nIt is mandatory for replace actions. Regex capture groups are available.\",\n \"type\": \"string\"\n },\n \"target_label\": {\n \"description\": \"UnderScoreTargetLabel - additional form of target label - target_label\\nfor compatibility with original relabel config.\\nif set both targetLabel and target_label, targetLabel has priority.\\nfor details https://github.com/VictoriaMetrics/operator/issues/131\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"sampleLimit\": {\n \"description\": \"SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"scheme\": {\n \"description\": \"HTTP scheme to use for scraping.\",\n \"enum\": [\n \"http\",\n \"https\"\n ],\n \"type\": \"string\"\n },\n \"scrapeTimeout\": {\n \"description\": \"Timeout after which the scrape is ended\",\n \"type\": \"string\"\n },\n \"scrape_interval\": {\n \"description\": \"ScrapeInterval is the same as Interval and has priority over it.\\none of scrape_interval or interval can be used\",\n \"type\": \"string\"\n },\n \"seriesLimit\": {\n \"description\": \"SeriesLimit defines per-scrape limit on number of unique time series\\na single target can expose during all the scrapes on the time window of 24h.\",\n \"format\": \"int64\",\n \"type\": \"integer\"\n },\n \"targets\": {\n \"description\": \"Targets static targets addresses in form of [\\\"192.122.55.55:9100\\\",\\\"some-name:9100\\\"].\",\n \"items\": {\n \"type\": \"string\"\n },\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig configuration to use when scraping the endpoint\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"vm_scrape_params\": {\n \"description\": \"VMScrapeParams defines VictoriaMetrics specific scrape parameters\",\n \"properties\": {\n \"disable_compression\": {\n \"description\": \"DisableCompression\",\n \"type\": \"boolean\"\n },\n \"disable_keep_alive\": {\n \"description\": \"disable_keepalive allows disabling HTTP keep-alive when scraping targets.\\nBy default, HTTP keep-alive is enabled, so TCP connections to scrape targets\\ncould be re-used.\\nSee https://docs.victoriametrics.com/vmagent#scrape_config-enhancements\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers allows sending custom headers to scrape targets\\nmust be in of semicolon separated header with it's value\\neg:\\nheaderName: headerValue\\nvmagent supports since 1.79.0 version\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"no_stale_markers\": {\n \"type\": \"boolean\"\n },\n \"proxy_client_config\": {\n \"description\": \"ProxyClientConfig configures proxy auth settings for scraping\\nSee feature description https://docs.victoriametrics.com/vmagent#scraping-targets-via-a-proxy\",\n \"properties\": {\n \"basic_auth\": {\n \"description\": \"BasicAuth allow an endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"Password defines reference for secret with password value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"password_file\": {\n \"description\": \"PasswordFile defines path to password file at disk\\nmust be pre-mounted\",\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Username defines reference for secret with username value\\nThe secret needs to be in the same namespace as scrape object\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"bearer_token\": {\n \"description\": \"SecretKeySelector selects a key of a Secret.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"bearer_token_file\": {\n \"type\": \"string\"\n },\n \"tls_config\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"type\": \"object\"\n },\n \"scrape_align_interval\": {\n \"type\": \"string\"\n },\n \"scrape_offset\": {\n \"type\": \"string\"\n },\n \"stream_parse\": {\n \"type\": \"boolean\"\n }\n },\n \"type\": \"object\"\n }\n },\n \"required\": [\n \"targets\"\n ],\n \"type\": \"object\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"targetEndpoints\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM Static Scrape\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM Static Scrape", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMUser.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMUser.json new file mode 100644 index 00000000000..ca323c49512 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/components/VMUser.json @@ -0,0 +1,195 @@ +{ + "capabilities": [ + { + "description": "Initiate a performance test. Meshery will execute the load generation, collect metrics, and present the results.", + "displayName": "Performance Test", + "entityState": [ + "instance" + ], + "key": "", + "kind": "action", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "perf-test", + "type": "operator", + "version": "0.7.0" + }, + { + "description": "Configure the workload specific setting of a component", + "displayName": "Workload Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "config", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure Labels And Annotations for the component ", + "displayName": "Labels and Annotations Configuration", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "labels-and-annotations", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View relationships for the component", + "displayName": "Relationships", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "relationship", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "View Component Definition ", + "displayName": "Json Schema", + "entityState": [ + "declaration", + "instance" + ], + "key": "", + "kind": "view", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "definition", + "type": "configuration", + "version": "0.7.0" + }, + { + "description": "Configure the visual styles for the component", + "displayName": "Styling", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Change the shape of the component", + "displayName": "Change Shape", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "mutate", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "shape", + "type": "style", + "version": "0.7.0" + }, + { + "description": "Drag and Drop a component into a parent component in graph view", + "displayName": "Compound Drag And Drop", + "entityState": [ + "declaration" + ], + "key": "", + "kind": "interaction", + "metadata": null, + "schemaVersion": "capability.meshery.io/v1alpha1", + "status": "enabled", + "subType": "compoundDnd", + "type": "graph", + "version": "0.7.0" + } + ], + "component": { + "kind": "VMUser", + "schema": "{\n \"description\": \"VMUser is the Schema for the vmusers API\",\n \"properties\": {\n \"spec\": {\n \"description\": \"VMUserSpec defines the desired state of VMUser\",\n \"properties\": {\n \"bearerToken\": {\n \"description\": \"BearerToken Authorization header value for accessing protected endpoint.\",\n \"type\": \"string\"\n },\n \"default_url\": {\n \"description\": \"DefaultURLs backend url for non-matching paths filter\\nusually used for default backend with error message\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"disable_secret_creation\": {\n \"description\": \"DisableSecretCreation skips related secret creation for vmuser\",\n \"type\": \"boolean\"\n },\n \"discover_backend_ips\": {\n \"description\": \"DiscoverBackendIPs instructs discovering URLPrefix backend IPs via DNS.\",\n \"type\": \"boolean\"\n },\n \"drop_src_path_prefix_parts\": {\n \"description\": \"DropSrcPathPrefixParts is the number of `/`-delimited request path prefix parts to drop before proxying the request to backend.\\nSee [here](https://docs.victoriametrics.com/vmauth#dropping-request-path-prefix) for more details.\",\n \"type\": \"integer\"\n },\n \"generatePassword\": {\n \"description\": \"GeneratePassword instructs operator to generate password for user\\nif spec.password if empty.\",\n \"type\": \"boolean\"\n },\n \"headers\": {\n \"description\": \"Headers represent additional http headers, that vmauth uses\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.68.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"ip_filters\": {\n \"description\": \"IPFilters defines per target src ip filters\\nsupported only with enterprise version of [vmauth](https://docs.victoriametrics.com/vmauth/#ip-filters)\",\n \"properties\": {\n \"allow_list\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"deny_list\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"load_balancing_policy\": {\n \"description\": \"LoadBalancingPolicy defines load balancing policy to use for backend urls.\\nSupported policies: least_loaded, first_available.\\nSee [here](https://docs.victoriametrics.com/vmauth#load-balancing) for more details (default \\\"least_loaded\\\")\",\n \"enum\": [\n \"least_loaded\",\n \"first_available\"\n ],\n \"type\": \"string\"\n },\n \"max_concurrent_requests\": {\n \"description\": \"MaxConcurrentRequests defines max concurrent requests per user\\n300 is default value for vmauth\",\n \"type\": \"integer\"\n },\n \"metric_labels\": {\n \"additionalProperties\": {\n \"type\": \"string\"\n },\n \"description\": \"MetricLabels - additional labels for metrics exported by vmauth for given user.\",\n \"type\": \"object\"\n },\n \"name\": {\n \"description\": \"Name of the VMUser object.\",\n \"type\": \"string\"\n },\n \"password\": {\n \"description\": \"Password basic auth password for accessing protected endpoint.\",\n \"type\": \"string\"\n },\n \"passwordRef\": {\n \"description\": \"PasswordRef allows fetching password from user-create secret by its name and key.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"response_headers\": {\n \"description\": \"ResponseHeaders represent additional http headers, that vmauth adds for request response\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.93.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retry_status_codes\": {\n \"description\": \"RetryStatusCodes defines http status codes in numeric format for request retries\\ne.g. [429,503]\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"targetRefs\": {\n \"description\": \"TargetRefs - reference to endpoints, which user may access.\",\n \"items\": {\n \"description\": \"TargetRef describes target for user traffic forwarding.\\none of target types can be chosen:\\ncrd or static per targetRef.\\nuser can define multiple targetRefs with different ref Types.\",\n \"properties\": {\n \"crd\": {\n \"description\": \"CRD describes exist operator's CRD object,\\noperator generates access url based on CRD params.\",\n \"properties\": {\n \"kind\": {\n \"description\": \"Kind one of:\\nVMAgent,VMAlert, VMSingle, VMCluster/vmselect, VMCluster/vmstorage,VMCluster/vminsert or VMAlertManager\",\n \"enum\": [\n \"VMAgent\",\n \"VMAlert\",\n \"VMSingle\",\n \"VMAlertManager\",\n \"VMAlertmanager\",\n \"VMCluster/vmselect\",\n \"VMCluster/vmstorage\",\n \"VMCluster/vminsert\"\n ],\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Name target CRD object name\",\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"Namespace target CRD object namespace.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"kind\",\n \"name\",\n \"namespace\"\n ],\n \"type\": \"object\"\n },\n \"discover_backend_ips\": {\n \"description\": \"DiscoverBackendIPs instructs discovering URLPrefix backend IPs via DNS.\",\n \"type\": \"boolean\"\n },\n \"drop_src_path_prefix_parts\": {\n \"description\": \"DropSrcPathPrefixParts is the number of `/`-delimited request path prefix parts to drop before proxying the request to backend.\\nSee [here](https://docs.victoriametrics.com/vmauth#dropping-request-path-prefix) for more details.\",\n \"type\": \"integer\"\n },\n \"headers\": {\n \"description\": \"RequestHeaders represent additional http headers, that vmauth uses\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.68.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"hosts\": {\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"load_balancing_policy\": {\n \"description\": \"LoadBalancingPolicy defines load balancing policy to use for backend urls.\\nSupported policies: least_loaded, first_available.\\nSee [here](https://docs.victoriametrics.com/vmauth#load-balancing) for more details (default \\\"least_loaded\\\")\",\n \"enum\": [\n \"least_loaded\",\n \"first_available\"\n ],\n \"type\": \"string\"\n },\n \"paths\": {\n \"description\": \"Paths - matched path to route.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"response_headers\": {\n \"description\": \"ResponseHeaders represent additional http headers, that vmauth adds for request response\\nin form of [\\\"header_key: header_value\\\"]\\nmultiple values for header key:\\n[\\\"header_key: value1,value2\\\"]\\nit's available since 1.93.0 version of vmauth\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"retry_status_codes\": {\n \"description\": \"RetryStatusCodes defines http status codes in numeric format for request retries\\nCan be defined per target or at VMUser.spec level\\ne.g. [429,503]\",\n \"items\": {\n \"type\": \"integer\"\n },\n \"type\": \"array\"\n },\n \"src_headers\": {\n \"description\": \"SrcHeaders is an optional list of headers, which must match request headers.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"src_query_args\": {\n \"description\": \"SrcQueryArgs is an optional list of query args, which must match request URL query args.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"static\": {\n \"description\": \"Static - user defined url for traffic forward,\\nfor instance http://vmsingle:8429\",\n \"properties\": {\n \"url\": {\n \"description\": \"URL http url for given staticRef.\",\n \"type\": \"string\"\n },\n \"urls\": {\n \"description\": \"URLs allows setting multiple urls for load-balancing at vmauth-side.\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"type\": \"object\"\n },\n \"targetRefBasicAuth\": {\n \"description\": \"TargetRefBasicAuth allow an target endpoint to authenticate over basic authentication\",\n \"properties\": {\n \"password\": {\n \"description\": \"The secret in the service scrape namespace that contains the password\\nfor authentication.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"description\": \"The secret in the service scrape namespace that contains the username\\nfor authentication.\\nIt must be at them same namespace as CRD\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"required\": [\n \"password\",\n \"username\"\n ],\n \"type\": \"object\"\n },\n \"target_path_suffix\": {\n \"description\": \"TargetPathSuffix allows to add some suffix to the target path\\nIt allows to hide tenant configuration from user with crd as ref.\\nit also may contain any url encoded params.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"tlsConfig\": {\n \"description\": \"TLSConfig specifies TLSConfig configuration parameters.\",\n \"properties\": {\n \"ca\": {\n \"description\": \"Stuct containing the CA cert to use for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"caFile\": {\n \"description\": \"Path to the CA cert in the container to use for the targets.\",\n \"type\": \"string\"\n },\n \"cert\": {\n \"description\": \"Struct containing the client cert file for the targets.\",\n \"properties\": {\n \"configMap\": {\n \"description\": \"ConfigMap containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key to select.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the ConfigMap or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"secret\": {\n \"description\": \"Secret containing data to use for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n }\n },\n \"type\": \"object\"\n },\n \"certFile\": {\n \"description\": \"Path to the client cert file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"insecureSkipVerify\": {\n \"description\": \"Disable target certificate validation.\",\n \"type\": \"boolean\"\n },\n \"keyFile\": {\n \"description\": \"Path to the client key file in the container for the targets.\",\n \"type\": \"string\"\n },\n \"keySecret\": {\n \"description\": \"Secret containing the client key file for the targets.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"serverName\": {\n \"description\": \"Used to verify the hostname for the targets.\",\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"tokenRef\": {\n \"description\": \"TokenRef allows fetching token from user-created secrets by its name and key.\",\n \"properties\": {\n \"key\": {\n \"description\": \"The key of the secret to select from. Must be a valid secret key.\",\n \"type\": \"string\"\n },\n \"name\": {\n \"default\": \"\",\n \"description\": \"Name of the referent.\\nThis field is effectively required, but due to backwards compatibility is\\nallowed to be empty. Instances of this type with an empty value here are\\nalmost certainly wrong.\\nTODO: Add other useful fields. apiVersion, kind, uid?\\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\\nTODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896.\",\n \"type\": \"string\"\n },\n \"optional\": {\n \"description\": \"Specify whether the Secret or its key must be defined\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\",\n \"x-kubernetes-map-type\": \"atomic\"\n },\n \"username\": {\n \"description\": \"UserName basic auth user name for accessing protected endpoint,\\nwill be replaced with metadata.name of VMUser if omitted.\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"targetRefs\"\n ],\n \"type\": \"object\"\n }\n },\n \"title\": \"VM User\",\n \"type\": \"object\"\n}", + "version": "operator.victoriametrics.com/v1beta1" + }, + "configuration": null, + "description": "", + "displayName": "VM User", + "format": "JSON", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "genealogy": "", + "isAnnotation": false, + "isNamespaced": true, + "published": false, + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz" + }, + "model": { + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "source_uri": "https://github.com/VictoriaMetrics/helm-charts/releases/download/victoria-metrics-k8s-stack-0.25.12/victoria-metrics-k8s-stack-0.25.12.tgz", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + }, + "schemaVersion": "components.meshery.io/v1beta1", + "status": "enabled", + "styles": { + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "svgColor": "\u003csvg width=\"18\" height=\"18\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cg clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003cpath d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"/\u003e\n\u003cpath d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"/\u003e\n\u003c/g\u003e\n\u003cdefs\u003e\n\u003cclipPath id=\"clip0_36_80\"\u003e\n\u003crect width=\"32\" height=\"32\" fill=\"white\"/\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgWhite": "\u003csvg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"\u003e\u003cpath d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003cpath d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"/\u003e\u003cpath d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"/\u003e\u003c/svg\u003e" + }, + "version": "v1.0.0" + } \ No newline at end of file diff --git a/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/model.json b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/model.json new file mode 100644 index 00000000000..721b1bcb909 --- /dev/null +++ b/server/meshmodel/victoria-metrics-k8s-stack/0.25.12/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics K8S Stack", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\n\u003cg xmlns=\"http://www.w3.org/2000/svg\" clip-path=\"url(#clip0_36_80)\"\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 7.69351V15.2015L22.9702 11.4346L16.4632 7.69351Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 16.7705V24.3157L23.0307 20.5607L16.4632 16.7705Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 15.1502V7.75632L9.10194 11.4416L15.5274 15.1502Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.63699 24.2878C3.89756 26.3157 5.60178 28.031 7.62134 29.3047V21.4033L2.63699 24.2878Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 24.2785V16.8264L9.08579 20.556L15.5274 24.2785Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 28.8344L15.0829 25.1049L8.55965 21.3335V28.8344Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4753 28.8742V21.3848L16.9615 25.1096L23.4753 28.8742Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.852 23.4194C30.9655 21.341 31.5949 19.0378 31.6935 16.6819L24.9119 20.5651L29.852 23.4194Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 19.7691L30.96 16.0256L24.4136 12.2634V19.7691Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4755 10.6455V3.20041L16.9919 6.91827L23.4755 10.6455Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4754 19.7364V12.2239L16.9779 15.986L23.4754 19.7364Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 12.2099V19.7784L15.1061 15.9882L8.55965 12.2099Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.5274 0.285706C13.1176 0.353534 10.756 0.977397 8.6271 2.10855L15.5274 6.06621V0.285706Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.55965 3.1492V10.6734L15.1107 6.91597L8.55965 3.1492Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62134 2.69299C5.60228 3.96735 3.89818 5.6826 2.63699 7.7099L7.62134 10.5873V2.69299Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M23.4335 2.14811C21.2869 0.992986 18.9001 0.355226 16.4632 0.285706V6.14069L23.4335 2.14811Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M0.285713 16.5517C0.367085 18.9754 1.01023 21.3471 2.16447 23.4799L7.21396 20.5559L0.285713 16.5517Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M2.16447 8.51996C1.01384 10.6433 0.370833 13.0043 0.285713 15.4178L7.22097 11.4393L2.16447 8.51996Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.61544 29.8822C10.7469 31.0189 13.1128 31.6461 15.5274 31.7143V25.9291L8.61544 29.8822Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.3675 7.73539C28.1143 5.71396 26.4208 4.00147 24.4136 2.72543V10.5987L29.3675 7.73539Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M24.4136 29.2791C26.4312 27.994 28.1314 26.2684 29.3863 24.2321L24.4136 21.3591V29.2791Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M31.7143 15.3738C31.6251 12.9835 30.9879 10.6458 29.8518 8.54102L24.8441 11.4325L31.7143 15.3738Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.4632 31.7143C18.8725 31.6467 21.2333 31.0229 23.3613 29.8914L16.4632 25.8942V31.7143Z\" fill=\"white\"\u003e\u003c/path\u003e\n\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M7.62141 19.711V12.2892L1.17738 15.9838L7.62141 19.711Z\" fill=\"white\" fill-opacity=\"0.8\"\u003e\u003c/path\u003e\n\u003c/g\u003e\n\u003cdefs xmlns=\"http://www.w3.org/2000/svg\"\u003e\n\u003cclipPath xmlns=\"http://www.w3.org/2000/svg\" id=\"clip0_36_80\"\u003e\n\u003crect xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"white\"\u003e\u003c/rect\u003e\n\u003c/clipPath\u003e\n\u003c/defs\u003e\n\u003c/svg\u003e", + "svgComplete": "", + "svgWhite": "\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\u003c!DOCTYPE svg\u003e\u003csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\"\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 8.732v6.57l5.694-3.297-5.694-3.273Zm0 7.942v6.602l5.747-3.285-5.747-3.317Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 15.256v-6.47l-5.622 3.225 5.622 3.245ZM4.307 23.252a13.809 13.809 0 0 0 4.362 4.39v-6.914l-4.362 2.524Zm11.279-.008v-6.52L9.95 19.985l5.636 3.258Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m9.49 27.23 5.707-3.263-5.707-3.3v6.563Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.54 27.265v-6.553l-5.699 3.259 5.7 3.294Zm5.58-4.773a13.697 13.697 0 0 0 1.612-5.895l-5.934 3.397 4.323 2.498Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"m23.362 19.298 5.728-3.276-5.728-3.291v6.567Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.541 11.315V4.8l-5.673 3.253 5.673 3.262Zm0 7.955v-6.574l-5.685 3.292 5.685 3.281Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 12.684v6.622l5.728-3.316-5.728-3.306Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M15.586 2.25a13.69 13.69 0 0 0-6.037 1.595l6.037 3.463V2.25Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.49 4.756v6.583l5.732-3.288L9.49 4.756Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 4.356a13.83 13.83 0 0 0-4.362 4.39l4.362 2.518V4.356Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M22.504 3.88a13.695 13.695 0 0 0-6.099-1.63v5.123l6.1-3.493ZM2.25 16.483c.071 2.12.634 4.196 1.644 6.062l4.418-2.559-6.062-3.503Zm1.644-7.028a13.68 13.68 0 0 0-1.644 6.036l6.068-3.482-4.424-2.554Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M9.539 28.147a13.673 13.673 0 0 0 6.047 1.603v-5.062L9.54 28.147Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M27.697 8.768a13.83 13.83 0 0 0-4.335-4.383v6.889l4.335-2.506ZM23.362 27.62a13.851 13.851 0 0 0 4.351-4.417l-4.351-2.514v6.93Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M29.75 15.452a13.659 13.659 0 0 0-1.63-5.979l-4.381 2.53 6.011 3.45Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M16.405 29.75a13.673 13.673 0 0 0 6.036-1.595l-6.036-3.498v5.093Z\" fill=\"#fff\"\u003e\u003c/path\u003e\u003cpath xmlns=\"http://www.w3.org/2000/svg\" d=\"M8.669 19.247v-6.494L3.03 15.986l5.639 3.261Z\" fill=\"#fff\" fill-opacity=\".8\"\u003e\u003c/path\u003e\u003c/svg\u003e" + }, + "model": { + "version": "0.25.12" + }, + "name": "victoria-metrics-k8s-stack", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "enabled", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file diff --git a/server/meshmodel/victoriametrics/0.13.1/v1.0.0/model.json b/server/meshmodel/victoriametrics/0.13.1/v1.0.0/model.json new file mode 100644 index 00000000000..d18cdb67a8d --- /dev/null +++ b/server/meshmodel/victoriametrics/0.13.1/v1.0.0/model.json @@ -0,0 +1,42 @@ +{ + "category": { + "name": "Observability and Analysis" + }, + "displayName": "Victoria Metrics", + "id": "00000000-0000-0000-0000-000000000000", + "metadata": { + "capabilities": null, + "isAnnotation": false, + "primaryColor": "#00B39F", + "secondaryColor": "#00D3A9", + "shape": "circle", + "styleOverrides": "", + "svgColor": "", + "svgComplete": "", + "svgWhite": "" + }, + "model": { + "version": "0.13.1" + }, + "name": "victoriametrics", + "registrant": { + "created_at": "0001-01-01T00:00:00Z", + "credential_id": "00000000-0000-0000-0000-000000000000", + "deleted_at": "0001-01-01T00:00:00Z", + "id": "00000000-0000-0000-0000-000000000000", + "kind": "artifacthub", + "name": "Artifact Hub", + "status": "discovered", + "sub_type": "", + "type": "registry", + "updated_at": "0001-01-01T00:00:00Z", + "user_id": "00000000-0000-0000-0000-000000000000" + }, + "connection_id": "00000000-0000-0000-0000-000000000000", + "schemaVersion": "models.meshery.io/v1beta1", + "status": "ignored", + "subCategory": "Monitoring", + "version": "v1.0.0", + "components": null, + "relationships": null + } \ No newline at end of file